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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
JemmaD
Helper V
Helper V

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.