Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

first letter in a field

khap
7 - Meteor

Hi,

 

I 'd like get records for a field that starts with a letter, A to Z. For example, if a value in a field starts with a letter, A through Z, update it to null, else keep whatever a value in that field.

 

can anyone help with a formula? 

 

Thanks 

 

 

2 REPLIES 2
jdunkerley79
ACE Emeritus
ACE Emeritus
IIF(REGEX_Match([Field1],"^[A-Za-z].*"),NULL(),[Field1])

should do what you want

khap
7 - Meteor

Thank you very much. 

Labels
Top Solution Authors