Hello everyone,
I am having issues with querying process report which has multiple (different) values in one column. The column is filled with data from a list of CDTs, for example:
I've tried setting it as a list of integers and strings, but either way, when trying to query all rows which have a value "12345" in that column (by using a!queryProcessAnalytics), I get no results.
a!queryFilter( field: "c4", operator: "includes", value: tostring("12345") )
I also tried all different combinatios (in, includes, strings, integers....).
Thanks in advance!
Discussion posts and replies are publicly visible
The way I've handled this sort of thing before is to force the column's data into a flattened string (though usually i'll create a brand new column for this, even if it seems redundant), because once it's a flattened string (instead of list), the query should work on it.
edit: see the example I posted in another comment of mine in this post, here.