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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Tatynout
Frequent Visitor

problem with filter function in my expression

Hello Guys,

 

I am using an excel file as my data source. I am working with my table product at the moment specifically with the fields Sales Revenue and States. I want to create a new measure on that table that will calculate the total revenue but only for the state on New york and with the use of variables. So with the declaration of my measure, i have created two variables one that hepls me filter the state of New York and another one that sums the field Sales revenue. Then i returned the result of the use of the CALCULATE FUNCTION. 

 

As you can see on the pictures the variable that sums my revenue but the one with the filter does not work. I am supposed to have 7.5 millions euros for New York's revenue. It works when i create another measure just to calculate the sum of the revenue but i rather not proceed like that for performance measures. 

 

Does anyone please know where i went wrong?

 

Regards,

Tatiana

function 1.png

 

this is my DAX expression: 

 

function2.png

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

I think the issue is that second VAR evaluates the SUM before the filter context from the first VAR is applied, so it returns a scalar value

CALCULATE(SUM(Produits[Sales_revenue]),NewYorkSales)


should work fine



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

2 REPLIES 2
Stachu
Community Champion
Community Champion

I think the issue is that second VAR evaluates the SUM before the filter context from the first VAR is applied, so it returns a scalar value

CALCULATE(SUM(Produits[Sales_revenue]),NewYorkSales)


should work fine



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

It works just fine!

 

Thanks you very much @Stachu

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

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