Forum Discussion

PBI_Curious's avatar
PBI_Curious
Frequent Visitor
5 years ago
Solved

Dax

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 ef...
  • AlexisOlson's avatar
    5 years ago

    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" )