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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Anonymous
Not applicable

Calculate Filter Ignoring in Table visual

Hi Guys,

 

 

 

My current measure = 

USOnlineLevel1 = CALCULATE(
                                                Sales[Sales Amount],
                                                Sales[SalesStore] = "Contoso North America Online Store",
                                                Customer[Education] = "Bachelors" ||
                                                 Customer[Education]= "Graduate Degree")
 
As you can see here below on the column USOnlineLevel1 that customer 671  there are unnecessary values of 889.00 (for High School, Graduate Degree, Partial College and Partial High School). Based on this measure i expect only one value of 889.00 in the Bachelor. 
 
How can i avoid ignore the filtered values? I only want to return the value of Contoso North America Online Store and Education = Bachelors and Graduate Degree...
 
Many Thanks
 
 
2019-01-07 00_04_10-Introduction to DAX - Power BI Desktop.png




2 ACCEPTED SOLUTIONS
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

If you write a formula like that, the context of Customer[Education] is overridden. So all the rows have values now. Please try a formula like below. 

 

USOnlineLevel1 =
CALCULATE (
    Sales[Sales Amount],
    Sales[SalesStore] = "Contoso North America Online Store",
    FILTER (
        Customer,
        Customer[Education] = "Bachelors"
            || Customer[Education] = "Graduate Degree"
    )
)

 

Best Regards,
Dale

Community Support Team _ Dale
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

v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Could you please mark the proper answers as solutions?

 

 

Best Regards,

Community Support Team _ Dale
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
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Could you please mark the proper answers as solutions?

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

If you write a formula like that, the context of Customer[Education] is overridden. So all the rows have values now. Please try a formula like below. 

 

USOnlineLevel1 =
CALCULATE (
    Sales[Sales Amount],
    Sales[SalesStore] = "Contoso North America Online Store",
    FILTER (
        Customer,
        Customer[Education] = "Bachelors"
            || Customer[Education] = "Graduate Degree"
    )
)

 

Best Regards,
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
Super User

Hi,

 

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.