Hello,I need to filter every record in the field that contains Alphabets in any part.I attached an example.Thank you.
Hi @BautistaC888
Here is one way of doing it, using the code
REGEX_CountMatches([text], "[[:alpha:]]" ) =0
:
It counts the number of times a letter appears and filters out records where the count is 0
Hi @BautistaC888 ,
Find attached the way to achieve to that
@BautistaC888 I hope this works.