Forum Discussion
Replace blanks with null
- 5 years ago
Anonymous ,
Use replace to achieve this.
Leave Value to Find as empty and replace with null.
In M-Query it looks something like below.
= Table.ReplaceValue(#"Replaced Value","",null,Replacer.ReplaceValue,{"COLUMN"})
Try replacing the column name and add the above line in advanced editor else use the first step.
Regards, '
Manikumar
If you find this is helpful, Accept as a Solution and leave a like.
Anonymous ,
Use replace to achieve this.
Leave Value to Find as empty and replace with null.
In M-Query it looks something like below.
= Table.ReplaceValue(#"Replaced Value","",null,Replacer.ReplaceValue,{"COLUMN"})
Try replacing the column name and add the above line in advanced editor else use the first step.
Regards, '
Manikumar
If you find this is helpful, Accept as a Solution and leave a like.
- Anonymous5 years agoNot applicable
thanks a lot manikumar34 its work!
- BrewDoug3 years agoNew Member
I have an entire Datamart with all strings stored in "Not NULL" columns. (blanks). Is there a way to change this somewhere Database or Table wide instead of changing this value on each individual field?
THanks for your help.