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.
I need to replicate a forumula in Excel which displays a ratio, being a sum of values based on certain criteria (in this case the number of items that failed in the Outcome column of a table) then effectively joins the result using &"/"& to the sum of all values in the same column. So result in this case is not presented as a percentage (which would be rather more straightforward!) but e.g. 16/3,609. This is the preferred presentation for the user as I suppose it provides more context than .44% necessarily would.
Solved! Go to Solution.
You can do the same in DAX using the FORMAT function to convert numbers to whatever format you'd like.
Ratio = FORMAT ( [Numerator], "#,##0" ) & "/" & FORMAT ( [Denominator], "#,##0" )
You can do the same in DAX using the FORMAT function to convert numbers to whatever format you'd like.
Ratio = FORMAT ( [Numerator], "#,##0" ) & "/" & FORMAT ( [Denominator], "#,##0" )
Use:
New measure =
VAR _Result = FORMAT([measure1], "Standard") & "/" & FORMAT([measure2], "Standard")
RETURN
SWITCH(TRUE(),
ISBLANK([measure1], BLANK(),
[measure1] = 0, BLANK(),
ISBLANK([measure2], BLANK(),
[measure2] = 0, BLANK(),
_Result)
Proud to be a Super User!
Paul on Linkedin.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
18 | |
15 | |
13 | |
11 | |
8 |
User | Count |
---|---|
24 | |
19 | |
12 | |
11 | |
10 |