Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have some
data with the character “*” and “/”. These characters are mean as characters, not as operators.
If I use the set analysis function
=count({$<Field={“*”}>Field)
the count is done over all data.
What can I do to count only the fields containing the character “*”?
What if you try this:
=Count({$<Field={" =Field = '*' "}>Field)
thank you, it works