Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
brockry1
Helper II
Helper II

Trying to sum events by Region Manager

I hvae this as my DAX formula and it is working to bring back all the events completed.

 

# of completed events/Visits = CALCULATE(DISTINCTCOUNT('Event & Task'[ID]),'Event & Task'[Status (Consolidated)]="Completed")
 
The Region Manager is in my "Account" table.
 
brockry1_0-1739982289727.png

How do I add to the formula to sum by Region? 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

vheqmsft_0-1740020998286.png

Create a measure

EventCount = 
CALCULATE(
    DISTINCTCOUNT('Event & Task'[ID]),
    FILTER(
        ALLEXCEPT(
           'Event & Task',
            Account[Key]
        ),
        'Event & Task'[Status (Consolidated)] = "Completed"
    )
)

Final output

vheqmsft_1-1740021034011.png

 

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

 

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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

vheqmsft_0-1740020998286.png

Create a measure

EventCount = 
CALCULATE(
    DISTINCTCOUNT('Event & Task'[ID]),
    FILTER(
        ALLEXCEPT(
           'Event & Task',
            Account[Key]
        ),
        'Event & Task'[Status (Consolidated)] = "Completed"
    )
)

Final output

vheqmsft_1-1740021034011.png

 

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

 

 

LYPowerBI
Frequent Visitor

CALCULATE(
DISTINCTCOUNT('Event & Task'[ID]),
'Event & Task'[Status (Consolidated)]="Completed",
'Account'[Region Manager] = "xxx")

Does this work for your question?

LYPowerBI
Frequent Visitor

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.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.