Forum Discussion
brissae
10 years agoFrequent Visitor
Count occurencies
Hello everyone, I have thw following information: And a want to get the next grid: The idea is to show the count of people who resolved more than 10 problems related to ...
- 10 years ago
You need two calculated tables.
Aggregate Table = SUMMARIZE ( 'YourTable', YourTable[Product name], YourTable[OWNER], "is cnt >=10", IF ( COUNTA ( 'YourTable'[OWNER] ) >= 10, 1, 0 ), "is cnt<10", IF ( COUNTA ( 'YourTable'[OWNER] ) >= 10, 0, 1 ) )grid = SUMMARIZE ( 'Aggregate Table', 'Aggregate Table'[Product name], "People>=10", SUM ( 'Aggregate Table'[is cnt >=10] ), "People<10", SUM ( 'Aggregate Table'[is cnt<10] ) )Regarding average, I don't see any date column in your table.
Eric_Zhang
10 years agoMicrosoft Employee
You need two calculated tables.
Aggregate Table =
SUMMARIZE (
'YourTable',
YourTable[Product name],
YourTable[OWNER],
"is cnt >=10", IF ( COUNTA ( 'YourTable'[OWNER] ) >= 10, 1, 0 ),
"is cnt<10", IF ( COUNTA ( 'YourTable'[OWNER] ) >= 10, 0, 1 )
)
grid =
SUMMARIZE (
'Aggregate Table',
'Aggregate Table'[Product name],
"People>=10", SUM ( 'Aggregate Table'[is cnt >=10] ),
"People<10", SUM ( 'Aggregate Table'[is cnt<10] )
)
Regarding average, I don't see any date column in your table.
brissae
10 years agoFrequent Visitor
Thank you Eric_Zhang Your answer helped a lot, I could finish my report, it was more complex that I thought.
You are brilliant!!!