This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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.
Solved! Go to Solution.
@Deepak3Arora
You use a measure as follows:
Meets % =
DIVIDE(
CALCULATE(
COUNTROWS( Table ),
Table[SLA] = "Meets"
),
COUNTROWS(Table)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Deepak3Arora
You use a measure as follows:
Meets % =
DIVIDE(
CALCULATE(
COUNTROWS( Table ),
Table[SLA] = "Meets"
),
COUNTROWS(Table)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |