Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
khag_hs
Contributor II
Contributor II

set analysis with data containing operators as text

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 “*”?

1 Solution

Accepted Solutions
sunny_talwar

What if you try this:

=Count({$<Field={" =Field = '*' "}>Field)

View solution in original post

2 Replies
sunny_talwar

What if you try this:

=Count({$<Field={" =Field = '*' "}>Field)

khag_hs
Contributor II
Contributor II
Author

thank you, it works