Forum Discussion
leahschneider
4 years agoHelper III
Replace Value in Multiple Columns Conditionally
I have a table in Power Query and I need to replace values across multiple columns if one column has a particular value. I've used https://gorilla.bi/power-query/replace-values/#conditional-replace-s...
- Anonymous4 years ago
have a try
= Table.ReplaceValue( #"Removed Other Columns", each [Income] > 50000, null, (x,y,z)=> if y then x*2 else x, {"Kidhome", "Teenhome"} )
leahschneider
4 years agoHelper III
Thank you so much. This is really tough for me.