Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
gavakie
Posting Yak Master
221 Posts |
Posted - 2010-08-16 : 13:01:50
|
I have a matrix that has totals by date by grouping and a seperate matrix that totals for everything by date. I need to divide the total by date by the total by date grouping. Any suggestions? |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2010-08-16 : 13:04:26
|
you can specify scope in SUM like =SUM(fields!yourfield.value,"grouping")/SUM(fields!yourfield.value,"dategroup")------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|