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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

How to format up to 2 decimal places in DAX using FORMAT()

Hi All,

I am trying to dynamically change the currency symbol according to the currency selection in the slicer.

 

I am using the FORMAT function to display currency according to the currency selected in slicer

FORMAT(MeasuretoFormat,"$#,##0.##")

results as:

SaloniGupta_0-1635909777032.png

 

How to Format it up to 2 decimal places? so the value $1364. should be displayed as $1364.00

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try like

FORMAT(MeasuretoFormat,"$#,##0.00")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@Anonymous , Try like

FORMAT(MeasuretoFormat,"$#,##0.00")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hello,

 

What if I want to format up to one decimal number?

For example. it is now showing like 85.32%

I want to change it to 85.3% using format in dax

 

Thank you in advance!

= FORMAT(MeasuretoFormat,".#%")

Anonymous
Not applicable

Hi @amitchandak 
That worked. Thanks a lot👍

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors