Forum Discussion
JoshuaBa
2 years agoNew Member
Clear all values in column
Hi everyone, I have a simple task but I cannot figure out how to do this. I have two columns, one a Retailer column that has dozens of retailers, and a second column that has sales units I e...
- 2 years ago
replace_walmart = Table.ReplaceValue( your_table, null, each [Retailer] = "Walmart", (v, o, n) => if n then null else v, {"Sales Units"} )
AlienSx
2 years agoSuper User
replace_walmart = Table.ReplaceValue(
your_table,
null,
each [Retailer] = "Walmart",
(v, o, n) => if n then null else v,
{"Sales Units"}
)