Start Free Trial

Alteryx Designer Desktop Discussions

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

Replace Null with Data- If Statement Formula

Lizbhernan
8 - Asteroid

Hello, I am working on a workflow in which some of my data is in another column so I am trying to bring it together into an updated column. I tried using an If statement formula to bring over data into null columns but when I try it, it makes the rest of the data null instead of combining both columns data. 

 

This is my formula IF [ Reimbursement Rate with Tax ]=Null() THEN [Reimbursement Rate with Tax10]ELSE Null() ENDIF

 

I have attached a sample and my desired results.

Any help with this would be greatly appreciated.

3 REPLIES 3
davidskaife
14 - Magnetar

Hi @Lizbhernan 

 

You weren't too far off - try this instead

 

IF isnull([ Reimbursement Rate with Tax ]) 
THEN [Reimbursement Rate with Tax10]
ELSE [ Reimbursement Rate with Tax ] 
ENDIF

 

binu_acs
21 - Polaris

@Lizbhernan updated the workflow

binuacs_0-1754410886810.png

 

Lizbhernan
8 - Asteroid

Thank you @davidskaife appreciate your help 😊

Labels
Top Solution Authors