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
CrisYan
Resolver III
Resolver III

Replace character only at the end of string using Power Query (Regex $)

Hi! I need some help please :).


I want to replace two characters ONLY if are placed at the end of string of one column.

I'm using Power Query and the following Query to replace the " L" characters (notice the leading space).

= Table.ReplaceValue(#"Ant_Query"," L","",Replacer.ReplaceText,{"COLUMN_TO_APPLY"})

 

But the results are not what I need.

 

Desirable:

"TEST L" --> "TEST"
"TEST LONG" --> "TEST LONG"

"TEST LONG L" --> "TEST LONG"

Actual:

"TEST L" --> "TEST"
"TEST LONG" --> "TESTONG"
"TEST LONG L" --> "TESTONG"

 

Using the "( L)$" Regex to search and replace the value would do the trick.

 

TY very much for the help, and Regards!

1 ACCEPTED SOLUTION
MarcelBeug
Community Champion
Community Champion

You can use the following formula:

 

= Table.TransformColumns(
Ant_Query,
{{"COLUMN_TO_APPLY",
each if Text.EndsWith(_," L")
then Text.Start(_,Text.Length(_)-2)
else _,
type text}})
Specializing in Power Query Formula Language (M)

View solution in original post

2 REPLIES 2
MarcelBeug
Community Champion
Community Champion

You can use the following formula:

 

= Table.TransformColumns(
Ant_Query,
{{"COLUMN_TO_APPLY",
each if Text.EndsWith(_," L")
then Text.Start(_,Text.Length(_)-2)
else _,
type text}})
Specializing in Power Query Formula Language (M)

It works!, TY very much (:

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors
Top Kudoed Authors