Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |