Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |