Martin sherk
Board Regular
- Joined
- Sep 11, 2022
- Messages
- 94
- Office Version
- 365
- 2016
I need to replace values in a column if anything (text or number) is found in another column.
i don't know what to type here in: each if [Data] = ?? , i want to say any value in that column.
Power Query:
= Table.ReplaceValue(#"Removed Duplicates",each [Remarks],each if [Data] = then "On Hold" else [Remarks],Replacer.ReplaceValue,{"Remarks"})
i don't know what to type here in: each if [Data] = ?? , i want to say any value in that column.