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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
TG_12
Frequent Visitor

Remove word(s) from a string

I have a column where some entries contain the phrase 'Automatic reply: ' at the beginning of the text string. I want to remove the 'Automatic reply:' from the beginning but keep the rest of the text following this phrase. 

 

I have tried the following formula but run into a problem as the phrase I am trying to remove is two words with a space between.

= Table.AddColumn(#"Added Custom2", "AutoReply", each Text.Combine(List.Select(Text.Split([Custom3]," "), each not(Text.Contains(_,"Automatic")))," "))

 

 

Any help would be great thanks 

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@TG_12 maybe add a column using the following M code, assuming you want to remove "Automatic Reply:" or you can also use replace to replace automatic reply with blank string.

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

3 REPLIES 3
claymcooper
Resolver II
Resolver II

Use the ":" as a delimeter and split the column in Power Query. Then just delete the column that has the automatic reply portion.

parry2k
Super User
Super User

@TG_12 maybe add a column using the following M code, assuming you want to remove "Automatic Reply:" or you can also use replace to replace automatic reply with blank string.

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

TG_12
Frequent Visitor

Thanks for this solution. I couldnt see any M code in your reply (Maybe just forget to add it) but your reccomendation of using the replace function has worked fine. Thank you! 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors