Hello All,
I have an UpdateContext thus:
UpdateContext({ varConcatenatedStates: Match(Concat( varStateNames, Value & ", " ), "^(?<trim>.*), $").trim});
This is returning "Texas, California, Texas, Virginia"
How can I distinct varConcatednatedStates so that I just have one occurrence of a state name (Texas in the above string) in the result?
Thanks in advance!