Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
JemmaD
Resolver II
Resolver II

Replace values where text starts with x

Hi there,

 

I have a text column with variations of a name which I need to replace.

I want to combine a ReplaceValue with Text.StartsWith and I can't figure it out.

 

The text in column [BRANCH] has variations of the word Axel such as 'Axel - UK' or 'Axel EUR' and I want it all to be renamed to the word 'Service' without having to replace values across all the variations individually. 

I could do this is with a calculated column but I don't want a new column really.

 

I tried the below but it's wrong!

= Table.ReplaceValue(PreviousStep,each Text.StartsWith([BRANCH], "Axel", "Service",Replacer.ReplaceText,{"BRANCH"}))
1 ACCEPTED SOLUTION
jgeddes
Super User
Super User

Try

 

Table.ReplaceValue(PreviousStep,each [Branch],each if Text.StartsWith([Branch], "Axel") then "Service" else [Branch],Replacer.ReplaceText,{"Branch"})

 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

1 REPLY 1
jgeddes
Super User
Super User

Try

 

Table.ReplaceValue(PreviousStep,each [Branch],each if Text.StartsWith([Branch], "Axel") then "Service" else [Branch],Replacer.ReplaceText,{"Branch"})

 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.