Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to separate field values from a field which starts with Letter and 3 digit number?

I need to separate field values from a field which have a length of 4 and starts with Letter and 3 digit number. Eg: B101, C253

Please tell me how to achieve this. Thanks.

5 Replies
michellysodre
Contributor III
Contributor III

Hi,

Letter: left(values,1)

Number: Right(values,3)

shraddha_g
Partner - Master III
Partner - Master III

If you want to separate alphabates and numbers and Format is same then you can try michellysodre‌ ch answer.

Else For Numbers :- Keepchar(FieldName,'1234567890')

For Alphabates - Purgechar(FieldName,'1234567890')

MarcoWedel

please post some sample data and your expected result.

thanks

regards

Marco

Anonymous
Not applicable
Author

Thank You

Anonymous
Not applicable
Author

Thank You