Quantcast
Channel: SQLServerCentral » Reporting Services » Reporting Services » Latest topics
Viewing all articles
Browse latest Browse all 2791

get sum of max values

$
0
0
I have a table with dates date Sends Opens Clicks Bounces9/1/2016 1 2 4 59/1/2016 1 2 4 59/16/2016 0 10 23 59/16/2016 0 10 23 59/16/2016 0 10 23 59/16/2016 0 10 23 5I am grouping on date and getting data something like belowdate Sends Opens Clicks Bounces9/1/2016 1 2 4 59/16/2016 0 10 23 5sends ,opens , clicks bounces columns has expression to get max value.: MAx(Fields!.sends.value)Now i want to calculate the total of all max values for all datesdate Sends Opens Clicks Bounces9/1/2016 1 2 4 59/16/2016 0 10 23 5TOTAl: 1 12 27 10How can we do this? I tried sum(max(Fields!.clciks.value)) it is justting the max value from the clicks and giving me 23whne i need 27

Viewing all articles
Browse latest Browse all 2791

Trending Articles