Multiple values in Process Report column

Certified Associate Developer

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

Parents Reply
  • +1
    Certified Lead Developer
    in reply to Dimitris Soulovaris

    I fear you're not quite understanding the full capability of the solution I've detailed here.  Sorry if my description thus far has been misleadingly vague or something.

    The array is concatenated such that the value ends up like "[123][1234][234][456]" (etc).  See my previous configuration screenshot for the expression code used to generate this string.

    When querying, you use "includes", and the value you pass into the filter is done thus:

    operator: "includes",
    value: "[" & ri!myValue & "]"

    This will find exact matches, as I previously said.

Children