编写M代码步骤,该步骤将用一个新值替换每个包含指定字符串的表单元格的整个当前值。
答案 0 :(得分:0)
让 来源= Excel.CurrentWorkbook(){[Name =“ Table1”]} [内容], replaceTextIfContainsABC =(inputText,old,new)=>
if (inputText is text and Text.Contains(inputText, old)) then
new
else
inputText,
#"Replaced Value" = Table.ReplaceValue(Source,"ABC","ABC", replaceTextIfContainsABC,{"Values"})
在 #“替换值”