Forum Discussion
Syndicate_Admin
2 years agoAdministrator
Condition a column
Hello I would like to generate a condition in which if the "Value 2" column detects that it has "null" then it takes the data from column 1. Value 1 Value 2 1 5 8 null 2 null ...
m_dekorte
2 years agoResident Rockstar
Or simply apply a Replace Values step to the column "Value 2".
Table.ReplaceValue(PrevStepName,null,each [Value 1],Replacer.ReplaceValue,{"Value 2"})
I hope this is helpful