This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I am trying to display users that are enrolled and not enrolled in specific courses.
Using a slicer we can select the course we want to view and the user table is then filtered to display all of the users that are enrolled in the course, how can I still display the users that aren't enrolled in that course?
Selecting show items with no data doesn't seem to work for this?
Thanks
Hi @ZachRoberts ,
Can you provide me some samples of dummy data? Then give the corresponding expected results.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@ZachRoberts , for that you need separate user and course dimensions.
Assume your table has user and course deatils (enrolled), join them with these dimesions
Then create a measure like
if(isblank(countrows(Fact)) , 1, blank())
And plot this against User and course from dimensions
Create new dimension
USer = distinct(Fact[User])
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 38 | |
| 25 | |
| 23 | |
| 22 |