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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
kashahzad
Frequent Visitor

Dax measure not pulling the desired result

Hi,

 

I am using a simple Calculate fucntion to pull the sales in california but the results are showing all States in west region, do you know why?

 

Power BI Desktop.png

1 ACCEPTED SOLUTION

Hi @kashahzad ,

 

Try this measure

 

SumSales =
CALCULATE (
    SUMX (
        Orders,
        'Orders'[Sale]
    ),
    KEEPFILTERS (
        FILTER (
            ALL ( 'Orders'[State] ),
            Orders[State] = "California"
        )
    )
)

 

Regards,

Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button

 

 

 

View solution in original post

4 REPLIES 4
Pragati11
Super User
Super User

Hi @kashahzad ,

 

Try modifying your DAX as follows:

 

TSales = CALCULATE(SUM(Orders[Sales]), FILTER(ALLSELECTED(Orders), Orders[State] = "California"))

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Hi @kashahzad ,

 

Try this measure

 

SumSales =
CALCULATE (
    SUMX (
        Orders,
        'Orders'[Sale]
    ),
    KEEPFILTERS (
        FILTER (
            ALL ( 'Orders'[State] ),
            Orders[State] = "California"
        )
    )
)

 

Regards,

Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button

 

 

 

@harshnathani 

 

Hi Harsh,

 

Thank you for providing an answer, can you tell me what is wrong with the formula I was using? I want to know to learn because I am a beginner.

 

Thanks again!

Hi @kashahzad ,

 

Nothing wrong with your formula.

 

Have a look at this video from 28:00 onwards.

 

https://www.youtube.com/watch?v=bJtRB86n9tk

 

Regards,

Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors