Alteryx Designer Cloud Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Cloud.
SOLVED

Three condition with Rule

ksarker
7 - Meteor

Hello, how can i resolve this following issue- If Column A start with 1, Column B =XYZ, Column C=ABC then column D=REV

 

Column AColumn BColumn CColumn D
145896XYZABCN/A
421KHYERTN/A
1589647XYZABCN/A
3 REPLIES 3
ShankerV
17 - Castor

Hi @ksarker

 

Please use the below in formula tool. 

 

IF left(tostring([column A]) , 1)="1"

AND [column B] = "XYZ"

AND [column C] = "ABC"

THEN "REV"

ELSE [column D]

ENDIF

ksarker
7 - Meteor

Hi Shanker, thanks for your response but somehow i am getting result "Null" . it didn't resolve my issue :( 

ShankerV
17 - Castor

Hi @ksarker 

 

Please check, I have used the same formula and I could see the expected result.

 

ShankerV_0-1678947960182.png

 

Can you please share some screenshots to check what went wrong in your workflow.

 

Many thanks

Shanker V