I am currently working on a workflow where I am combining data from multiple sources into one Alteryx file. The main issue with this project is that the data I am using is very sparse and somewhat inaccurate. I am trying to blend two colums that are the same field type and category except one of them is a "revised" column. I am trying to blend the revised column to populate the "UNKNOWN" rows of the original column so that in the end I will have one column with data from both sources. I am trying to use a Formula
Tool to write an expression that will find all of the "UNKNOWN" rows in the original column and replace them with the good values from the "revised" column. This is what my current expression looks like:
Replace([Customer Division], "UNKNOWN" , "[rev Customer division]")
I have tried many IF statements as well but can't seem to get it right. I think my issue is trying to replace with values in the field rather than a simple "insert text" replacement.
Any advice would be great