Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
Solved! Go to Solution.
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}})
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}})
It works!, TY very much (:
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.