Forum Discussion
AfnanAbuArida
2 years agoFrequent Visitor
Replace Number with Text on Power Query
Hello I have a column named "Last Dividend Per Share" and I want to replace all the value of 0 with Not Available. How can I do that? Best,
- 2 years ago
= Table.ReplaceValue(#"Previous Step","0","Not Available",Replacer.ReplaceValue,{"Last Dividend Per Share"})
Or through the GUI:
foodd
2 years agoCommunity Champion
= Table.ReplaceValue(#"Previous Step","0","Not Available",Replacer.ReplaceValue,{"Last Dividend Per Share"})
Or through the GUI: