Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hello,
I have a column like this:
| Person1 | 1.00 - Blue; 0.50 - Red |
| Person2 | 1.00 - Blue; 0.10 - Green |
| Person3 | 1.00 - Green; 0.25 - Red |
| Person4 | 0.50 - Red; 0.30 - Green |
I want to do a transformation in PowerQuery that removes the Decimal Number and the Dash:
| Person1 | Blue; Red |
| Person2 | Blue; Green |
| Person3 | Green; Red |
| Person4 | Red; Green |
I tried this in Advanced Editor:
GetRidOfNumber =
Table.TransformColumns(
#"Changed Type1",
{
{
"Column2",
(text)=> Text.Remove(text,{"0".."9"})
}
}
)
in
GetRidOfNumber
That gave me:
| Person1 | . - Blue; . - Red |
| Person2 | . - Blue; . - Green |
| Person3 | . - Green; . - Red |
| Person4 | . - Red; . - Green |
How do I get rid of the decimal point and hyphen?
TYIA
Solved! Go to Solution.
You can just expand list for 2nd argument, like this: {"0".."9",".","-"} or go with each Text.Select(_,{"a".."z","A".."Z"," "})...
You can just expand list for 2nd argument, like this: {"0".."9",".","-"} or go with each Text.Select(_,{"a".."z","A".."Z"," "})...
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |