Join Slack
Powered by
is there a way to do does not start with 0 to 9?
# general
k
Kien
10/26/2021, 6:02 PM
is there a way to do does not start with 0 to 9?
s
scottvonduhn
10/26/2021, 6:32 PM
You'll probably be able to do this with a formula condition and the REGEXP_LIKE function
j
jen
10/27/2021, 7:36 PM
Something like
CASE WHEN REGEXP_LIKE({name}, '^[0-9]*$') THEN 1 ELSE 0 END
Open in Slack
Previous
Next