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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
brtfrschnr
Frequent Visitor

Subtotal Column That Displays in Context of Slicer

I'm trying to create a subtotal column I can use in operations with other columns. In the example below, I have used REMOVEFILTERS for the Subtotal column, but it obv stays constant despite any filtering.

 

Needs: Subtotal always shows the total value in context of applied slicers, but the table itself should show row level Date, Location, ID, and value. Given the below image, a location slicer would adjust the subtotal and the weight (Value/Subtotal) of all dates, and IDs for that location. Similarly, a date slicer would adjust these as well. if 1/3/2022 is selected, the subtotal will be a sum of all values for just that day, and then calculate the weight based on the row's value against the subtotal of all locations/ids for that day.

 

brtfrschnr_0-1685128114741.png

 

2 ACCEPTED SOLUTIONS
v-cgao-msft
Community Support
Community Support

Hi @brtfrschnr ,

 

Please try:

Subtotal = CALCULATE([Value], ALLEXCEPT('Table', 'Table'[Date]))

This measure will keep the date field in context and allow the subtotal to be adjusted based on the slicer applied.

vcgaomsft_0-1685328309982.png

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

Thank you! In the end I realized the problem was I used a similarly named column from another table. 🙄

 

But glad to know I had the DAX correct.

View solution in original post

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @brtfrschnr ,

 

Please try:

Subtotal = CALCULATE([Value], ALLEXCEPT('Table', 'Table'[Date]))

This measure will keep the date field in context and allow the subtotal to be adjusted based on the slicer applied.

vcgaomsft_0-1685328309982.png

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Thank you! In the end I realized the problem was I used a similarly named column from another table. 🙄

 

But glad to know I had the DAX correct.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors