Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
FROM
AG2_STATUS_SUBHOUR ag2
JOIN DATE_TIME sdt ON (sdt.DATE_TIME_KEY = ag2.DATE_TIME_KEY)
JOIN PERSONS p ON (p.USER_ID = ag2.USER_ID AND p.ORGANIZATION_ID = ag2.ORGANIZATION_ID)
LEFT OUTER JOIN TEAM_MEMBERS tm ON (tm.USER_ID = p.USER_ID)
LEFT OUTER JOIN TEAMS t ON (t.TEAM_KEY = tm.TEAM_KEY)
LEFT OUTER JOIN GROUP_MEMBERS gm ON (ag2.USER_ID = gm.USER_ID)
LEFT OUTER JOIN GROUPS g ON (gm.GROUP_ID = g.GROUP_ID)
LEFT OUTER JOIN DIVISIONS d ON (d.DIVISION_ID = p.DIVISION_ID)
I need to create an report , make sure all filters are working fine and do incremental refresh and publish and test , if everything is working fine.
https://drive.google.com/file/d/1S8zgfqwHnaYtVELKapqdV-9xVIaaSU1Y/view?usp=sharing
I'm not able to create the inner joins , and when i create the report with the default joins done by powerbi and publish using incremental refresh getting this error in powerbi service
Solved! Go to Solution.
@manoj_0911 , Create fact AG2_STATUS_SUBHOUR
and Dimension DATE_TIME,
Combine PERSONS, TEAM_MEMBERS, TEAMS, DIVISIONS to create a person team table in power query (Use merge query)
Combine GROUP_MEMBERS, GROUPS into Gtoup dimesion.
Now join them in in data model. Power BI always show full data from Fact table (Many side table). so you will have left join.
@manoj_0911 , Create fact AG2_STATUS_SUBHOUR
and Dimension DATE_TIME,
Combine PERSONS, TEAM_MEMBERS, TEAMS, DIVISIONS to create a person team table in power query (Use merge query)
Combine GROUP_MEMBERS, GROUPS into Gtoup dimesion.
Now join them in in data model. Power BI always show full data from Fact table (Many side table). so you will have left join.
Thank you so much for your reply, I tried this approach but faced issues while joining the 3, So going to attempt to merge all tables to 1
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 |
---|---|
73 | |
71 | |
55 | |
37 | |
32 |
User | Count |
---|---|
71 | |
65 | |
60 | |
50 | |
45 |