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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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