Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I need some help with the Table.ReplaceValue function.
In my column need to replace two different values with the same string. So "]" and "[" need to be replaced with "|".
I want to avoid two separate Replace functions but was unable to find a handy solution for this.
Do you have any tips?
Thanky in advance
Solved! Go to Solution.
maybe you can try this
= List.Accumulate({{"[","|"},{"]","|"}},Source,(x,y)=>Table.ReplaceValue(x,y{0},y{1},Text.Replace,{"Column1"}))
Proud to be a Super User!
maybe you can try this
= List.Accumulate({{"[","|"},{"]","|"}},Source,(x,y)=>Table.ReplaceValue(x,y{0},y{1},Text.Replace,{"Column1"}))
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.