Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |