Forum Discussion

kirbynguyen's avatar
kirbynguyen
Icon for Helper II rankHelper II
5 years ago
Solved

Changing Total Value based on Date Slicer

Hello,

 

I am trying to get the total per column as a cell in the table visual based on a date filter. Here is some sample data:

 

DateVolume
1/1/20215
1/2/202110
1/3/202115
1/4/202120
1/5/202125
1/6/202130
1/7/202135
1/8/202140
1/9/202145

 

The measure would calculate the total of Volume based on a date slicer, so a sample output based on 1/1/2021-1/5/2021 would be:

DateVolumeTotalVolume
1/1/2021575
1/2/20211075
1/3/20211575
1/4/20212075
1/5/20212575

 

If the slicer was 1/1/2021 - 1/3/2021, we'd get 30 for TotalVolume instead of 75. So we want the TotalVolume to be based on the date slicer. 

 

Please help and thanks in advance!

  • kirbynguyen add a measure:

     

    total for selected dates = 
    CALCULATE ( SUM ( 'Table'[Volume] ), ALLSELECTED() )

     

    Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.

1 Reply

  • kirbynguyen add a measure:

     

    total for selected dates = 
    CALCULATE ( SUM ( 'Table'[Volume] ), ALLSELECTED() )

     

    Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS  I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.