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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

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

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.