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.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 15 | |
| 8 | |
| 6 | |
| 5 | |
| 5 |