March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hoping for some Power Query assistance.
I have a column of reference data that I want to treat as Text, and have it in the form of xx.xx
In Excel - I would simply highlight the column, Format/Custom, and type in "00.00" to get my desired outcome.
I've spent an hour in PQ and can't make this work. Can anyone offer some guidance?
Much appreciated!
Jase.
Column as shown in Power Query | Desired (text) outcome |
1.21 | 01.21 |
1.22 | 01.22 |
1.3 | 01.30 |
10.1 | 10.10 |
12.2 | 12.20 |
Solved! Go to Solution.
Thanks for this. I struggled with it (I'm not the brightest) but to no avail. However, your answer prompted me to success. It's certainly not elegant, but here's what I did...
Split the column at the "." delimeter.
Renamed the two new columns, "Half_1" and "Half_2"
Created 2 custom columns:
This put a space any time there was not 2 digits
Then I went and did a Find/Replace " " with "0"
Then concatenated the two columns: = [Half_1] & "." & [Half_2]
Long way to do it, but it worked!
Thanks to all, your post prompted me in a successful direction!
Jase.
Here you go, this works.
let
Source = NameOfYourTable,
#"Added Prefix" = Table.TransformColumns(Source, {{"Column as shown in Power Query", each if Text.StartsWith(_, "1.") then ("0" & _) else _, type text}}),
#"Added Suffix" = Table.TransformColumns(#"Added Prefix", {{"Column as shown in Power Query", each if Text.Length(_) <> 5 then _ & "0" else _, type text}})
in
#"Added Suffix"
Column as shown in Power QueryDesired (text) outcome
01.21 | 01.21 |
01.22 | 01.22 |
01.30 | 01.30 |
10.10 | 10.10 |
12.20 | 12.20 |
---Nate
Thanks for this. I struggled with it (I'm not the brightest) but to no avail. However, your answer prompted me to success. It's certainly not elegant, but here's what I did...
Split the column at the "." delimeter.
Renamed the two new columns, "Half_1" and "Half_2"
Created 2 custom columns:
This put a space any time there was not 2 digits
Then I went and did a Find/Replace " " with "0"
Then concatenated the two columns: = [Half_1] & "." & [Half_2]
Long way to do it, but it worked!
Thanks to all, your post prompted me in a successful direction!
Jase.
this is a workaround
= Table.AddColumn(Origine, "format", each let part=Text.Split([Column as shown in Power Query],".") in Text.PadStart(part{0},2,"0")&"."&Text.PadEnd(part{1},2,"0"))
perphs the Text.Format function could accomplish this task better, but I dont have the documentation of that function
Hi @Jase71ds ,
What you can do is go to Query Editor in Power BI. Select the column in your table:
In the top ribbon select TRANSFORM --> Data Type --> TEXT:
This will chnage the data-type of your column.
Thanks,
Pragati
Thanks but I've already tried that. Doesn't produce desired results 😞
nel mio pc il risultato è questo.
Non è quello che cercavi?
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
13 | |
9 |
User | Count |
---|---|
36 | |
31 | |
20 | |
19 | |
17 |