Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I believe this is not too difficult but I have not been able to wrap my head around the logic to do this. I believe what I need to do is to create a calculated table.
Here's my scenario: I need to be able to count "participation" by organizations. I need to be able to display content in 1 table to show participation.
There are 3 columns:
Organization Name | City | Country | ETC
Fiscal Year | Organization Name | Survey Participation
What I want to be able to do is to build a table like this. B (meeting attendance) and C (survey participation) are already related to Column A via "Organization Name". I believe I just have to count rows for Column B and C.
Fiscal Year | Organization Name | Meeting Attendance | Survey Participation
FY17 | Acme Inc | 4 | 1
FY17 | Company 2 | 0 | 4
Solved! Go to Solution.
Hi @jbrown,
You can create a table with the DAX below:
Table = SUMMARIZE('Table1','Table1'[Organization Name],"Meeting Attendance",COUNT(Table2[Session]),"Survey Participation",COUNT('Table3'[Survey Participation]))
As you didn't provide any sample data, I created a pbix file with some dummy data. You can download it below to see if it meet your requirements.
Best Regards,
Qiuyun Yu
Hi @jbrown,
You can create a table with the DAX below:
Table = SUMMARIZE('Table1','Table1'[Organization Name],"Meeting Attendance",COUNT(Table2[Session]),"Survey Participation",COUNT('Table3'[Survey Participation]))
As you didn't provide any sample data, I created a pbix file with some dummy data. You can download it below to see if it meet your requirements.
Best Regards,
Qiuyun Yu
This works.
I also need to solve for instances where records don't have "Meeting Attendance" or "Survey Participation"
For example: Table1 contains all organizations
Table2 (meeting attendance) only has records if the organization attended meeting
Table 3 (survey participation) only has records if organization took the survey.
Hi @jbrown,
As this issue is different from the original one, please create a new thread and share sample data to clarify the requirement. So we can find the solution promptly.
Best Regards,
Qiuyun Yu
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |