For a certain table, I want to determine if the string "CCCC" is contained within elements of column C. Normally, I would expect to use Contains(:C, "CCCC").
However, in this scenario, column C is not just a simple column. I need to determine if "CCCC" exists in column C when column C is grouped by the values in column A and column B, and I need this check to be applied row by row.
When I asked a generative AI, it suggested Group(:A,:B)&Contains(:C,"CCCC"), but this approach didn't work. Currently, I'm stuck with the following JSL script that didn't yield the desired result:
If(
Group(:A,:B)&Contains(:C,"CCCC"),1,
0
)