I would like to replace "ValueToReplace" with null
in powerquery. This does not work (returns error):
Table.ReplaceValue(#"Previous Step","ValueToReplace", null ,Replacer.ReplaceText,{"Col1"})
This works but it returns "" instead of null:
Table.ReplaceValue(#"Previous Step","ValueToReplace","",Replacer.ReplaceText,{"Col1"})