Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 7 | |
| 7 | |
| 6 |