Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
Is it possible to write a measure to return the pictured values as whole number and currency? I need any figure below 1000 to show as whole number and anything above that to show as currency. The data will be displayed in a table format.
Thank you!
Solved! Go to Solution.
@N7MESTE3 , You can create a measure like
FormattedValue =
VAR Value = SUM('YourTable'[YourColumn])
RETURN
IF(Value < 1000,
FORMAT(Value, "0"),
FORMAT(Value, "$#,##0"))
Proud to be a Super User! |
|
@N7MESTE3 , You can create a measure like
FormattedValue =
VAR Value = SUM('YourTable'[YourColumn])
RETURN
IF(Value < 1000,
FORMAT(Value, "0"),
FORMAT(Value, "$#,##0"))
Proud to be a Super User! |
|
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
26 | |
20 | |
13 | |
10 | |
10 |