Forum Discussion
Deepak3Arora
4 years agoFrequent Visitor
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 11:00 AM | Missed | Request | Application |
| 9/3/22 8:00 AM | Meets | Request | Application |
| 10/4/22 6:00 AM | Missed | Request | Application |
| 10/6/22 10:00 PM | Meets | Incident | Application |
| 9/6/22 10:23 AM | Meets | Incident | Infrastructure |
| 9/6/22 10:12 AM | Missed | Incident | Application |
| 10/8/22 6:00 PM | Meets | Request | Infrastructure |
| 10/9/22 8:00 PM | Missed | Request | Infrastructure |
| 9/3/22 9:00 AM | Meets | Request | Infrastructure |
I need to find percentage of Meets records versus total no of records for that month as column and type/Group as row in a matrix row.
I am able to find count of records but not percentage of Meets Records with total for that month/type/group.
Any Help would be really really appreciable.
Deepak3Arora
You use a measure as follows:Meets % = DIVIDE( CALCULATE( COUNTROWS( Table ), Table[SLA] = "Meets" ), COUNTROWS(Table) )
2 Replies
- Deepak3AroraFrequent Visitor
- FowmySuper User
Deepak3Arora
You use a measure as follows:Meets % = DIVIDE( CALCULATE( COUNTROWS( Table ), Table[SLA] = "Meets" ), COUNTROWS(Table) )