frac
2 months agoQrew Member
Syntax help using a variable in a formula query
Hello, i want to update my filter query to use a variable for the column number. var text vRef = [ReferenceID];
var text QUERY = "{7.EX.'5'}"; vRef is my column number, what is the right way to r...
- 2 months ago
thanks for the replay, its not the second part of the query that i want to swap, it was the numeric column field. i did some digging and it looks like while i cant seed a variable for the column number into the beginning of the query, i can just make the entire query string a variable and fed that in. so i made another column with a formula query that updates of the referencde, and then i am pulling that whole thing in instead.
var text vQuery = [Query]; var text QUERY = $vQuery;