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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Disable Exponent format in Card Visualization

I'm having difficulty with making a card display as 0.00.

 

This is as the card displays now.

Capture.PNG

 

 

 

 

 

 

 

However, the same column displays as 0.00 in a table on the same report page.

 

Capture2.PNG

 

For the card visualization, I've made sure to set it to 2 decimal places.

 

Capture3.PNG

 

And the column is set at the Data Level to display as a decimal number with only 2 decimal places. 

 

Capture4.PNG

 

Yet for some reason, it still displays a very small decimal in exponential form on the card visualization. Is there a way to fix this so it just reads 0.00?

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I think this is caused by floating point imprecision.

 

Try changing your data type to a currency type, seeing as how you're apparently working with money:

 

2017-10-03_09-58-23.png

 

Rather, you ought to do this at the query level, changing the data type to a fixed decimal type, which you ought to be doing anyway when working with money (I'm unsure if the currency format changes your underlying data to a fixed decimal type; do this if the first option doesn't help):

 

PBIDesktop_2017-10-03_10-01-31.png

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

In the card formating pane make display unit as Auto.then it work

chethan
Resolver III
Resolver III

@Anonymous Use the Below mentioned DAX

 

Client Paid = FORMAT(SUM(Table1[Billed]),"00000")

 

Regards,

Chetan K

Anonymous
Not applicable

I think this is caused by floating point imprecision.

 

Try changing your data type to a currency type, seeing as how you're apparently working with money:

 

2017-10-03_09-58-23.png

 

Rather, you ought to do this at the query level, changing the data type to a fixed decimal type, which you ought to be doing anyway when working with money (I'm unsure if the currency format changes your underlying data to a fixed decimal type; do this if the first option doesn't help):

 

PBIDesktop_2017-10-03_10-01-31.png

tjd
Impactful Individual
Impactful Individual

Try changing the Display Units setting on the card well from Auto to None.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.

Top Solution Authors