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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

"Countif" across two tables in Direct Query

Hi All,

 

Im really stuck on something that should be so simple.

 

I am trying to Count the Number of Sales Executives that have sales more than Zero. Which is accurate with applied slicers such as Month year and Store. So that we can have a sales revenue divided by Sales Execs.  The sales execs name is in one Table and the Revenue is in another. Im really struggling with the count function of the sales person.

 

The name is in 'Sales Name'[Sales Exec]

 

and the Sales Revenue is in  'Sales Revenue'[Revenue_Awarded]

 

Any help is much appreciated.

 

 Image for community.jpg

 

Im in directy query and the two tables are linked.

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

Try this MEASURE

 

MEASURE =
CALCULATE (
    COUNT ( 'Sales Name'[Sales Exec] ),
    FILTER (
        ALL ( 'Sales Name'[Sales Exec] ),
        CALCULATE ( SUM ( 'Sales Revenue'[Revenue_Awarded] ) ) > 0
    )
)

View solution in original post

5 REPLIES 5
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

Try this MEASURE

 

MEASURE =
CALCULATE (
    COUNT ( 'Sales Name'[Sales Exec] ),
    FILTER (
        ALL ( 'Sales Name'[Sales Exec] ),
        CALCULATE ( SUM ( 'Sales Revenue'[Revenue_Awarded] ) ) > 0
    )
)
Anonymous
Not applicable

Thank you for your reply however this doesnt appear to work in direct query.

 

I get the error message "Function 'Filter' is not supported in this context in DirectQuery mode.

 

Is there another way??Image for community2.jpg

Hi @Anonymous

 

Did you add it as a MEASURE or Calculated Column?

@Anonymous

 

here is another way

 

MEASURE =
COUNTROWS (
    FILTER (
        ALL ( 'Sales Name'[Sales Exec] ),
        CALCULATE ( SUM ( 'Sales Revenue'[Revenue_Awarded] ) ) > 0
    )
)
Anonymous
Not applicable

thank you this is now working with the original solution i just needed to enable a setting in option direct query. This is a massive help. Thanks !!!!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors