is there a way to do does not start with 0 to 9?
# general
k
is there a way to do does not start with 0 to 9?
s
You'll probably be able to do this with a formula condition and the REGEXP_LIKE function
j
Something like
CASE WHEN REGEXP_LIKE({name}, '^[0-9]*$') THEN 1 ELSE 0 END