Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
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
I hvae this as my DAX formula and it is working to bring back all the events completed.
How do I add to the formula to sum by Region?
Solved! Go to Solution.
Hi @brockry1 ,
Can't determine what your data structure looks like, here's a sample of data created from your description.
Event & Task
| ID | Status (Consolidated) | Key |
| 1001 | Completed | 1 |
| 1002 | Incompleted | 1 |
| 1001 | Completed | 1 |
| 1002 | Completed | 2 |
| 1003 | Completed | 2 |
| 1004 | Completed | 2 |
| 1005 | Completed | 3 |
| 1006 | Completed | 4 |
| 1006 | Incompleted | 4 |
| 1006 | Incompleted | 4 |
Account
| Region | Key |
| A | 1 |
| B | 2 |
| C | 3 |
| D | 4 |
Make sure there is a relationship between the two tables
Create a measure
EventCount =
CALCULATE(
DISTINCTCOUNT('Event & Task'[ID]),
FILTER(
ALLEXCEPT(
'Event & Task',
Account[Key]
),
'Event & Task'[Status (Consolidated)] = "Completed"
)
)
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @brockry1 ,
Can't determine what your data structure looks like, here's a sample of data created from your description.
Event & Task
| ID | Status (Consolidated) | Key |
| 1001 | Completed | 1 |
| 1002 | Incompleted | 1 |
| 1001 | Completed | 1 |
| 1002 | Completed | 2 |
| 1003 | Completed | 2 |
| 1004 | Completed | 2 |
| 1005 | Completed | 3 |
| 1006 | Completed | 4 |
| 1006 | Incompleted | 4 |
| 1006 | Incompleted | 4 |
Account
| Region | Key |
| A | 1 |
| B | 2 |
| C | 3 |
| D | 4 |
Make sure there is a relationship between the two tables
Create a measure
EventCount =
CALCULATE(
DISTINCTCOUNT('Event & Task'[ID]),
FILTER(
ALLEXCEPT(
'Event & Task',
Account[Key]
),
'Event & Task'[Status (Consolidated)] = "Completed"
)
)
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
CALCULATE(
DISTINCTCOUNT('Event & Task'[ID]),
'Event & Task'[Status (Consolidated)]="Completed",
'Account'[Region Manager] = "xxx")
Does this work for your question?
I did not 100% understand your question. but one way to calculate the #Event completed by region manager xxxxx might be = CALCULATE(
DISTINCTCOUNT('Event & Task'[ID]),
'Event & Task'[Status (Consolidated)]="Completed",
'Account'[Regino Manger] = "xxxxx"),
Depending on you, you may consider to add KEEPFILTER on the filter expression.
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 |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 11 | |
| 6 | |
| 5 |