Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be 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

Reply
smpa01
Super User
Super User

Display up to two decimal but not by rounding

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.

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

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.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

7 REPLIES 7
Greg_Deckler
Super User
Super User

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.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

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.

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
Anonymous
Not applicable

CAN U SHARE HOW U SOLVED


@smpa01 wrote:

Thanks @Greg_Deckler. It worked for me.


 

@Anonymousyou can follow the solution

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
MFelix
Super User
Super User

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.

 

format.png

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thanks @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.

 

 

Capture.PNGCapture 1.PNG

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.