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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am new to Power BI and DAX. I need help with the below.
I have a table in my input like this -
Tutor | Subjects | Status |
John | Chemistry | Complete |
Mike | Biology | In Progress |
Stella | Physics | Not Started |
Mike | Economics | Not Started |
Mike | Algebra | In Progress |
Stella | Geometry | In Progress |
John | Economics | Complete |
I need to create a visual table something like this. Is there a way I can create a measure to fetch the Status of Subjects that each Tutor handles?
Subjects | Mike | Stella | John |
Chemistry | Complete | ||
Biology | In Progress | ||
Physics | Not Started | ||
Economics | Not Started | ||
Algebra | In Progress | ||
Geometry | In Progress | ||
Economics | Complete |
Thanks,
Sandy
Solved! Go to Solution.
@sandyn-2303 , Create a matrix with the subject on row, Tutor on column, and status on values
means max(Table[status]) on values , you can min too
@sandyn-2303 , Create a matrix with the subject on row, Tutor on column, and status on values
means max(Table[status]) on values , you can min too
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |