Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Help me please.
As below table
Animal First Grade Second Grade Third Grade
Cat B A A
Rat A A A
Bird D C A
Cat E B B
Rat A B B
Bird B A A
Cat C B C
Rat C E D
Bird E D C
How can i create summary and line chart on page (and can use slicer to filter by Group )
Grade First Second Third
A 2 3 4
B 2 3 2
C 2 1 2
D 1 1 1
E 2 1 0
Sorry, My Englis isn't that good.
Solved! Go to Solution.
@neoneo , You have to create a common grade table
Grade =distinct(union(all(Table[First Grade]),all(Table[Second Grade]),all(Table[Third Grade])))
Join with all three columns now will active, another one will be inactive //Assume active is First Grade
Count is
In table visual table grade from grade table and these measures
Count First Grade = count(Table[First Grade])
Count Second Grade = calculate(count(Table[Second Grade]), userelation(Table[Second Grade], grade[First Grade]))
Count Third Grade = calculate(count(Table[Third Grade]), userelation(Table[Third Grade], grade[First Grade]))
https://www.youtube.com/watch?v=e6Y-l_JtCq4
is this what you want?
please see the attachment.
Proud to be a Super User!
I want count grade from table data.
@neoneo , You have to create a common grade table
Grade =distinct(union(all(Table[First Grade]),all(Table[Second Grade]),all(Table[Third Grade])))
Join with all three columns now will active, another one will be inactive //Assume active is First Grade
Count is
In table visual table grade from grade table and these measures
Count First Grade = count(Table[First Grade])
Count Second Grade = calculate(count(Table[Second Grade]), userelation(Table[Second Grade], grade[First Grade]))
Count Third Grade = calculate(count(Table[Third Grade]), userelation(Table[Third Grade], grade[First Grade]))
| User | Count |
|---|---|
| 50 | |
| 37 | |
| 31 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 135 | |
| 102 | |
| 60 | |
| 36 | |
| 35 |