Alteryx Designer Desktop Discussions

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

Replace null value with the value in the next column

arsalanzaki
6 - Meteoroid

I am trying to replace the null values in the column "Extracted_Telstra_Site_ID" with the values in the next column "Extracted_Telstra_Site_ID_2", please see the image attached.

2 REPLIES 2
ShankerV
17 - Castor

Hi @arsalanzaki 

 

Step 1: Formula tool

 

IF IsNull([Extracted_Telstra_site_ID])
THEN [Extracted_Telstra_site_ID_2]
ELSE [Extracted_Telstra_site_ID]
ENDIF

 

Many thanks

Shanker V

arsalanzaki
6 - Meteoroid

Thanks, it worked.

Labels