Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 9 | |
| 8 | |
| 7 | |
| 7 |