Forum Discussion
eliele
7 years agoFrequent Visitor
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...
- 7 years agoHi 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]) - 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])) - 7 years agoWell done, it is always an amazing feeling when you can solve it!