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
Hi,
Is there a way Power Query can display Decimal Numbers up to 2 decimal point and not achieve this task by rounding.
For example, if the value is 1.2368, I want to see 1.23 so that when I compare this value with another column that contains 1.23 too, the subtraction should result a 0.
I tried doing this by using Number.Round. So it rounds 1.2368 to 1.24 and when I compare it with another column containing 1.23 there is a difference of 0.01.
Thank you in advance.
Solved! Go to Solution.
Try this:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtQzMjYxNVOK1QGzzcwtLGFsI0tLIDsWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Number = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Number", type text}}), #"Extracted First Characters" = Table.TransformColumns(#"Changed Type", {{"Number", each Text.Start(_, 4), type text}}), #"Changed Type1" = Table.TransformColumnTypes(#"Extracted First Characters",{{"Number", type number}}) in #"Changed Type1"
Basically, convert to text. Extract first 4 characters, then convert back to a decimal number. Presto, chango, truncate without rounding.
Try this:
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtQzMjYxNVOK1QGzzcwtLGFsI0tLIDsWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Number = _t]), #"Changed Type" = Table.TransformColumnTypes(Source,{{"Number", type text}}), #"Extracted First Characters" = Table.TransformColumns(#"Changed Type", {{"Number", each Text.Start(_, 4), type text}}), #"Changed Type1" = Table.TransformColumnTypes(#"Extracted First Characters",{{"Number", type number}}) in #"Changed Type1"
Basically, convert to text. Extract first 4 characters, then convert back to a decimal number. Presto, chango, truncate without rounding.
Hi @Greg_Deckler this is a great solution - exactly what im looking for however as Im a bit of a power bi novice can you please alloborate on where/how you use this solution? Many thanks 🙂
Thanks @Greg_Deckler. It worked for me.
@Anonymousyou can follow the solution
Hi @smpa01,
In the modeling tab you can define what is the number of decimals you want to see in your decimal numbers just select 2, this is also achievable in each of the visuals by selecting the formating option in the data setup.
This can be used for columns or measures.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks @MFelix for the response. I was looking for possible solution if exists in Power Query. Nonetheless I wanted to try it out the way you advised. But it did not yield what I was looking for.
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 |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |