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
stieve63
New Member

Calculate function context issue

Hello,

Think I have a context issue with my calculate function:

Tot sales Qty Fietsen =
CALCULATE([Total Sales Quantity],
Products[Product Group Level 1] = "fietsen",
NOT Products[Product Group Level 2] IN {"compensatie afmontage","kortingen"},
Products[Product Group Level 3] <> "accu"
)
See attachment: why is it counting 286 for a lot of lines where I except the same as the Total Sales Quantity (example row 3) or 'blank' (example row 6 'compensatie afmontage') ?
 
stieve63_0-1705585778204.png

 

What am I doing wrong in the syntax?

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

HI,

I am not sure if I understood your question correctly, but please try something like below whether it suits your requirement.

 

Tot sales Qty Fietsen =
CALCULATE (
    [Total Sales Quantity],
    FILTER (
        Products,
        Products[Product Group Level 1] = "fietsen"
            && NOT ( Products[Product Group Level 2] IN { "compensatie afmontage", "kortingen" } )
            && Products[Product Group Level 3] <> "accu"
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
stieve63
New Member

Thx a lot @Jihwan_Kim 
How could I overlook the FILTER function, I feel a bit stupid now but still new at PowerBI, learning everyday 😉

Jihwan_Kim
Super User
Super User

HI,

I am not sure if I understood your question correctly, but please try something like below whether it suits your requirement.

 

Tot sales Qty Fietsen =
CALCULATE (
    [Total Sales Quantity],
    FILTER (
        Products,
        Products[Product Group Level 1] = "fietsen"
            && NOT ( Products[Product Group Level 2] IN { "compensatie afmontage", "kortingen" } )
            && Products[Product Group Level 3] <> "accu"
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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