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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors