Forum Discussion

eliele's avatar
eliele
Frequent Visitor
7 years ago
Solved

Power BI Matrix Calculated Column

I created the matrix below and I have page filters based on id and month.   Is there a way for me to create a calculated column that does Failures/Flights? I tried creating it as an additional colu...
  • GilbertQ's avatar
    7 years ago
    Hi there

    When you say a column that does Failures/Flights, would you want a combination of both of them?

    If so you could create a New Measure with the following: Flights & Failures = SUM(Table[Flights]) + SUM(Table[Failures])
  • eliele's avatar
    eliele
    7 years ago

    I solved it by creating a new measure instead of a new quick measure.

     

    Flights/Failures = DIVIDE(SUM('Table'[Failures Count]),SUM('Table'[Flight Count]))
  • GilbertQ's avatar
    GilbertQ
    7 years ago
    Well done, it is always an amazing feeling when you can solve it!