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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
Anonymous
Not applicable

Number Visualization

Hi All,

 

I have odd requirement to fulfil

 

Values in DBClient Requrement
100.25100.25
15.35715.36
1515
1313

 

can this  number format achievable ?

 

1 ACCEPTED SOLUTION

You will need to create a measure or a calculate column to format  the numbers. Try this:

 

Measure =
IF (
    SUM ( Table[Number] ) = INT ( SUM ( Table[Number] ) ),
    FORMAT ( SUM ( Table[Number] ), "#,#" ),
    FORMAT ( SUM ( Table[Number] ), "#,0.00" )
)

 

or

Column =
IF (
    Table[Number] = INT ( Table[Number] ),
    FORMAT ( Table[Number], "#,#" ),
    FORMAT ( Table[Number], "#,0.00" )
)

 

Please take note that the result will be of text data type.










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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

3 REPLIES 3
danextian
Super User
Super User

You may format by selecting a field (column or measure) then going to Modeling tab. 
format a field.png










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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

Appreciate ur @danextian  reply
I will describe my more  


As my knowlage,

under the same column heading, two data format need to show


decimal number with 2 decimal places 
100.25
15.36

And aslo 


15
13
need to visualise like whole number

end result need to be
100.25
15.36

15

13


how can i achive this?

You will need to create a measure or a calculate column to format  the numbers. Try this:

 

Measure =
IF (
    SUM ( Table[Number] ) = INT ( SUM ( Table[Number] ) ),
    FORMAT ( SUM ( Table[Number] ), "#,#" ),
    FORMAT ( SUM ( Table[Number] ), "#,0.00" )
)

 

or

Column =
IF (
    Table[Number] = INT ( Table[Number] ),
    FORMAT ( Table[Number], "#,#" ),
    FORMAT ( Table[Number], "#,0.00" )
)

 

Please take note that the result will be of text data type.










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


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

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.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.