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
dokat
Post Prodigy
Post Prodigy

Change number format based on its value

Hi,

 

I have formula that returns value in thousands or millions based on filter selection. Is it possible to format it based on the value with dax formula. For Ex: If the selection returns 500000, it formats $500K, if its $5,000,000, returns $5.0M. Below is the formula use.

 

Net Sales = CALCULATE(('P&L'[2021]), 'P&L'[P&L] in { "Customer NS"})
 
Appreciate anyone who has a solve for it.
1 ACCEPTED SOLUTION
dokat
Post Prodigy
Post Prodigy

I modified the formula and tried below and its working

 

Testmeasure = VAR NetSales = SUM([Values])
RETURN
SWITCH(TRUE(),
[Net Sales] <1000000, FORMAT('P&L'[Net Sales],"$#0,K"),
[Net Sales] >=1000000, FORMAT('P&L'[Net Sales],"$#,##,,.0M"),
FORMAT('P&L'[Net Sales],"##,##0")
)

View solution in original post

2 REPLIES 2
dokat
Post Prodigy
Post Prodigy

I modified the formula and tried below and its working

 

Testmeasure = VAR NetSales = SUM([Values])
RETURN
SWITCH(TRUE(),
[Net Sales] <1000000, FORMAT('P&L'[Net Sales],"$#0,K"),
[Net Sales] >=1000000, FORMAT('P&L'[Net Sales],"$#,##,,.0M"),
FORMAT('P&L'[Net Sales],"##,##0")
)
ALLUREAN
Solution Sage
Solution Sage

Hi, @dokat 

Not sure if I understand it correctly, but you can set to display Auto in visual options for this measure?




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


https://allure-analytics.com/
https://www.youtube.com/channel/UCndD_QZVNB_JWYLEmP6KrpA
https://www.linkedin.com/company/77757292/

Proud to be a Super User!




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.