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

DAX Query to filter correctly

 Hi all, 

 

I have a table smilar to the attached snapshot. I need to create a metric that shows sum of market transactions (for a selected store) when I select a store in the slicer. 

 

My problem is that when I select a store, Market-sum filetrs shows value of that store and not the entire market of that store. 

 

For example if I select store 21, answer should be 1829 and not 604. 

Capture.PNGCapture12.PNG

Thanks!

 

1 ACCEPTED SOLUTION

@Anonymous

Try this:

Market Sum =
CALCULATE (
    SUM ( 'Table'[Transaction] ),
    FILTER ( ALL ( 'Table' ), 'Table'[Market] = SELECTEDVALUE ( 'Table'[Market] ) )
)

Bless you!
Vivek

If it helps, please mark it as a solution
Congratulations would be a cherry on top 🙂

https://www.vivran.in/

Connect on LinkedIn

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Since store 21, belongs to Market C. Answer should be sum of Transactions of Market C: 1829

 

 

@Anonymous

Try this:

Market Sum =
CALCULATE (
    SUM ( 'Table'[Transaction] ),
    FILTER ( ALL ( 'Table' ), 'Table'[Market] = SELECTEDVALUE ( 'Table'[Market] ) )
)

Bless you!
Vivek

If it helps, please mark it as a solution
Congratulations would be a cherry on top 🙂

https://www.vivran.in/

Connect on LinkedIn

amitchandak
Super User
Super User

@Anonymous 

I think your data is not matching what you set. Filter 21 seems to be working correctly. Do you want sum of market or State?

 

vivran22
Community Champion
Community Champion

Hello @Anonymous ,

 

Please share sample data file/more details around the existing data. The issue is not clear from the description.

 

Cheers!
Vivek

https://www.vivran.in/
Connect on LinkedIn

 

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.