Forum Discussion

Deepak3Arora's avatar
Deepak3Arora
Frequent Visitor
4 years ago
Solved

Power BI - Grouping Issue

I am trying to Develop a Dashboard with Matrix Layout based on below type of data Date                         SLA       Type      Group 9/1/22 10:00 AM Meets Incident Application 9/1/22 1...
  • Fowmy's avatar
    4 years ago

    Deepak3Arora 

    You use a measure as follows:

    Meets % = 
    DIVIDE(
        CALCULATE(
            COUNTROWS( Table ),
            Table[SLA] = "Meets"
        ),
        COUNTROWS(Table)
    )