Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
Solved! Go to 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
Hi @kashahzad ,
Try modifying your DAX as follows:
TSales = CALCULATE(SUM(Orders[Sales]), FILTER(ALLSELECTED(Orders), Orders[State] = "California"))
Thanks,
Pragati
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
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)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 6 |