|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, April 04, 2013 2:35 PM
Points: 92,
Visits: 189
|
|
Hello!
I am tracking our company's inventory in a SSRS 2008 Tablix report. I am displaying the inventory for each day, at the end of the Month I need to display the Month inventory...basically the inventory on the last day of the month.
Select invDate, Branch, Month(invdate) as Month_, InvBalance From DailyInventory
Matrix row group=Branch column group=Month_, invDate
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Yesterday @ 9:42 AM
Points: 886,
Visits: 816
|
|
Could you do a sum on the values where the invdate equals the max invdate within the month grouping, something along the lines of,
SUM(IIF(invdate = MAX(invdate,"Month"),InvBalance,0)
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, April 04, 2013 2:35 PM
Points: 92,
Visits: 189
|
|
| That's not working, I am trying to do this in a Matrix so it is not recognizing that "cell" as having any data
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, April 04, 2013 2:35 PM
Points: 92,
Visits: 189
|
|
We are definitely on the right track here, I need to find the value for the max(date) and pass it to the "Total" cell...now how to do this???
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Thursday, April 04, 2013 2:35 PM
Points: 92,
Visits: 189
|
|
I figured out how to do it for the weekly total rows...
=iif(InScope("Date2"), sum(Fields!Sales.Value), last(Fields!Sales.Value))
Now the conundrum lies in trying to total the total columns correctly
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Yesterday @ 4:51 PM
Points: 32,923,
Visits: 26,811
|
|
marty.seed (11/10/2009) I figured out how to do it for the weekly total rows...
=iif(InScope("Date2"), sum(Fields!Sales.Value), last(Fields!Sales.Value))
Now the conundrum lies in trying to total the total columns correctly
Hi Marty,
Did you ever get this sorted out?
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|