JSL: Conditional Check on Grouped Data
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 ...