how to use the filter tool to check if all the values in the column are in upper case
example- ABC
Acdcf
xyz
ref
earth
TEST
i want to apply filter and T anchor should show - TEST and ABC while F contains rest of the values.
Solved! Go to Solution.
Try this my friend:
REGEX_Match([Field1], Uppercase([Field1]),0) = -1
Solution courtesy of @NicoleJohnson : https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Filter-for-string-values-that-...
Since there's no function that does this, and because "=" is not case sensitive, you'll have to create a new field (say, "UPPER") where UPPER = Uppercase([your field here]). Then Join it to itself on [your field here] = UPPER. Join IS case sensitive, so only records that are fully uppercase will come out of the J anchor.
Thank you every one for help
Nice one @binuacs ! Didn't know regex had \u !
@caltang i think there is mis understanding at your end please go through the challenge again