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 have a table which has two columns, ID and Event (9 different events). Im trying to figure out the best way to calculate and visualise the number attendees that attended multiple events.
So far Ive got this calculation:
Solved! Go to Solution.
Hi @aniekeme,
After thoroughly reviewing the details you provided, I was able to reproduce the scenario, and it worked on my end. I have used the sample data on my end and successfully implemented it.
I am also including .pbix file for your better understanding, please have a look into it:
Hope this will help you resolve your issue, if you need any further assistance, feel free to reach out.
If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.
Thank you for using Microsoft Community Forum.
Hi @aniekeme,
Just a quick check-in!
Has your issue been resolved with the information we shared? We’d be delighted to help further if needed.
If the solution worked, marking it as Accepted and adding a Kudos would be much appreciated, it helps others find valuable answers.
Thanks for your continued participation.
Thank you all for your help!
Hi @aniekeme ,
You want to group attendees by the number of events they attended (e.g., “20 IDs attended 9 events”, etc.). You can do this in two steps:
EventsAttended =
CALCULATE(
DISTINCTCOUNT('Get That Job'[Event]),
ALLEXCEPT('Get That Job', 'Get That Job'[ID])
)AttendeeSummary =
SUMMARIZE(
VALUES('Get That Job'[ID]),
[EventsAttended],
"AttendeeCount", COUNTROWS(CURRENTGROUP())
)Or, if you want to do this in a visual:
This way, you’ll see for each “EventsAttended” value how many unique IDs fall into that group.
Let me know if you need a step-by-step on how to set up the visuals!
translation and formatting supported by AI
Hello,
Thanks for the quick and detaield reply. I'm not too familiar with DAX queries in Power BI so i'm not quite getting the second step.
I've created the eventsattended as a measure. However when trying to create Attendeesummary [EventsAttended] isnt recognised in the syntax. Any idea what might be causing this issue?
Hi @aniekeme,
After thoroughly reviewing the details you provided, I was able to reproduce the scenario, and it worked on my end. I have used the sample data on my end and successfully implemented it.
I am also including .pbix file for your better understanding, please have a look into it:
Hope this will help you resolve your issue, if you need any further assistance, feel free to reach out.
If this post helps, then please give us ‘Kudos’ and consider Accept it as a solution to help the other members find it more quickly.
Thank you for using Microsoft Community Forum.
Hi @aniekeme,
We strive to make sure every issue gets addressed completely. If the previous answer helped, that’s great, please mark it as Accepted and consider giving it a Kudos.
Still facing issues? Just reply here and we’ll be right with you.
Thanks for being a valued part of the community,
Hi @aniekeme,
We wanted to follow up to see if our suggestion was helpful. Please let us know how things are progressing and if you are still encountering any issues.
If the response resolved your problem, you may mark it as the solution and give it a thumbs up to assist others in the community as well.
Thank you.
Hi @aniekeme,
Just a quick check-in!
Has your issue been resolved with the information we shared? We’d be delighted to help further if needed.
If the solution worked, marking it as Accepted and adding a Kudos would be much appreciated, it helps others find valuable answers.
Thanks for your continued participation.
Check out the April 2026 Power BI update to learn about new features.
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 |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |