Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |