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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Employee
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
Employee
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
Employee
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
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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