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 1...
- 4 years ago
Deepak3Arora
You use a measure as follows:Meets % = DIVIDE( CALCULATE( COUNTROWS( Table ), Table[SLA] = "Meets" ), COUNTROWS(Table) )
Fowmy
4 years agoSuper User
Deepak3Arora
You use a measure as follows:
Meets % =
DIVIDE(
CALCULATE(
COUNTROWS( Table ),
Table[SLA] = "Meets"
),
COUNTROWS(Table)
)