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.
Hi there,
I have 3 tables in an extended data model, which I am trying to use DAX to calculate something and I am struggling to figure it out...
Table 1 - User Groups
Table 2 - ServiceNow Problem
Table 3 - ServiceNow Problem Tasks
I am trying to calculate the number of Tasks that do not have an assignee of the Problems that are owned by a usergroup. I can do this via a calculated column using the following:-
The following DAX can be used if I include the Problem Record in the table and reference it via SelectedValue:-
You could do something like
Num unassigned =
VAR Problems =
VALUES ( 'sn_problem_fact'[problem ID] )
VAR Tasks =
VALUES ( 'sn_task_fact'[problem ID] )
VAR Result =
COUNTROWS ( EXCEPT ( Problems, Tasks ) )
RETURN
Result
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 |
---|---|
10 | |
9 | |
8 | |
8 | |
8 |
User | Count |
---|---|
13 | |
12 | |
11 | |
10 | |
8 |