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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Convert values into whole numbers and decimal based on case

Hi,

 

I have a two columns within the dataset.

One is Attribute and second value

 

Attribute  Value

Volume   0

Volume   5

Speed     0.05

Speed     2.93

 

Above is how the data is coming. But when I pull it in a table Volume becomes 0.00 and 5.00

Apparently I want to see whole number when the attribute is volume and decimals when the attribute is speed.

But it shows 0.00 for volume instead of 0 .

 

Tried a case statement with ROUND for one and not otherwise but its not working.

 

Any suggestions?

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

Create a column using below dax expression:

 

Column = IF('Table'[Attribute] ="Volume",FORMAT('Table'[  Value],"general number"),IF('Table'[Attribute] ="Speed",FORMAT('Table'[  Value],"fixed"),BLANK()))

 

 And you will see:

Annotation 2020-06-26 111314.png

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous ,

 

Create a column using below dax expression:

 

Column = IF('Table'[Attribute] ="Volume",FORMAT('Table'[  Value],"general number"),IF('Table'[Attribute] ="Speed",FORMAT('Table'[  Value],"fixed"),BLANK()))

 

 And you will see:

Annotation 2020-06-26 111314.png

 

Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
parry2k
Super User
Super User

@Anonymous you can change the data type to whole number, select column and there will be column tools option in the menu, and change the type to whole number.

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

Thank you for your reply. That will not work in my case because I do not want speed in whole number. Speed should be decimal and volume should be whole even though they are both coming from the same column.

@Anonymous you cannot have different formats for the same column and until you create a column or measure and do conditional formatting and that will your value to the text.

 

something like this but the new column will be a text column

New Column = 
SWITCH ( TRUE(),
Table[Column] IN { "Weight", "Speed" } , FORMAT( Table[Value], "####0.00" ),
Table[Column] IN { "Heigh"} , FORMAT( Table[Value], "####0" )
)

One other way is to use calculation groups but it is a bit complex but can surely used and you can create a calculation group outside the power bi file using Tabular Editor and it is not officially supported though.

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.