Forum Discussion
mscantle
Helper I
2 years agoPower BI table with rows filtering a dataset
I have a dataset of values for academic performance of high school students in various subjects (Maths, English, Science, etc). Each student belongs to one or more key groups (eg Male, Female, Speci...
- 2 years ago
Thanks, but this doesn't solve the problem.
I have ended up creating lots of measures and then arranging them in Cards as follows:
The slicers then all work.
I just can't help thinking this a very inefficient way of getting what I want.
ravsha85
2 years agoFrequent Visitor
mscantle you can try to create a Summarized table based on the Inputs you have
SummaryTable =
SUMMARIZE (
'StudentTable',
'StudentTable'[KeyGroup],
"Maths Avg", AVERAGE ( 'StudentTable'[Maths] ),
"English Avg", AVERAGE ( 'StudentTable'[English] ),
"Science Avg", AVERAGE ( 'StudentTable'[Science] )
)