Hi All, Thanks for your time,
I have a field with values that are seprated by the comma or , - when I try to count the distinct values in that using the REGEX_CountMatches it is not doing the DISTINCT
did I miss anything
Field1 CountColumn
xyz 1
abc, xyz 2
abc,xyz,MMM 3
abc,xyz,abc 2 - This should be 2 since abc is repeating
What I have is
CountColumn=REGEX_CountMatches([Field1], ",") + 1