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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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.


@ 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!:
The Definitive Guide to Power Query (M)

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.


@ 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!:
The Definitive Guide to Power Query (M)

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors