In case you missed the announcement: The Alteryx One Fall Release is here! Learn more about the new features and capabilities here
ACT NOW: The Alteryx team will be retiring support for Community account recovery and Community email-change requests after December 31, 2025. Make sure to check your account preferences in my.alteryx.com to make sure you have filled out your security questions. Learn more here
Start Free Trial

Alteryx Designer Desktop Discussions

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

which operator/parameter should be used with V_String in IF Conditional formula

nkapadia
6 - Meteoroid

I have a check number field in Input data file which is V_String data type. I am trying to create additional column name in output as “Property Type” which is also V_String. I want to create a IF conditional formula if Check number starts with 007, then Property type value should be assigned as MS01 else CK13. I am not sure which operator/parameter should be used with V_String.

2 REPLIES 2
binu_acs
21 - Polaris

@nkapadia IF both field are string type you write the formula like below

IF StartsWith([number],'007') Then 'MS01'
Else 'CK13'
EndIf
nkapadia
6 - Meteoroid

Thank you!

Labels
Top Solution Authors