Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I need to delete the last one or two digits by every row in the column using powerquery
Solved! Go to Solution.
You can try this. Replace:
Source - your previous step
Column1 - your column name
#"Trimmed Text" = Table.TransformColumns(Source,{{"Column1", each Text.TrimEnd(_,{"0".."9"}), type text}})
OR
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.TrimEnd([Column1],{"0".."9"}))
You should Trim it one more time afterwards to remove trailing whitespaces.
You can try this. Replace:
Source - your previous step
Column1 - your column name
#"Trimmed Text" = Table.TransformColumns(Source,{{"Column1", each Text.TrimEnd(_,{"0".."9"}), type text}})
OR
#"Added Custom" = Table.AddColumn(Source, "Custom", each Text.TrimEnd([Column1],{"0".."9"}))
You should Trim it one more time afterwards to remove trailing whitespaces.