Forum Discussion
Anonymous
4 years agoNot applicable
Replacing string with null in power query
Hey there I'm trying to replace a text string in power query with power query's standard null value. However, whatever the text I try to replace with the null all I get is the same value all over...
- 4 years ago
Hi, Anonymous
The second part you mentioned is not empty. This means that you have at least one space character in your text.
If possible, you should first replace ' ' with '' as follows:
= Table.ReplaceValue(#"Renamed Columns"," ","",Replacer.ReplaceText,{"Column3"})Best Regards,
Community Support Team _ Eason
v-easonf-msft
4 years agoCommunity Support
Hi, Anonymous
The second part you mentioned is not empty. This means that you have at least one space character in your text.
If possible, you should first replace ' ' with '' as follows:
= Table.ReplaceValue(#"Renamed Columns"," ","",Replacer.ReplaceText,{"Column3"})
Best Regards,
Community Support Team _ Eason