how to use SRSS to create account balance? example : DEBIT CREDIT Balance 500 500 200 700 300 400 the depit and credit i already use sql query to display it, now just the balance dont know how to use SRSS to do. so somebody can help?
That is more on presentation side, Ibelieve nothing you much perform on SSRS side unless you use relevant query points to display the data. http://www.microsoft.com/technet/itshowcase/content/marstcs.mspx fyi in addition to referring to latest books online.
you can create a data set with running total. Following is an example. select SalesOrderId, OrderDate=convert(char(10),OrderDate,111), TotalDue,[Running Total]from Sales.SalesOrderHeader sohCROSS APPLY ( select [Running Total]=sum(TotalDue) from Sales.SalesOrderHeaderwhere SalesOrderID <= soh.SalesOrderIDand year(OrderDate)=2001 and month(OrderDate)=7) as RTwhere year(OrderDate)=2001 and month(OrderDate)=7order by OrderDate;
thank you all your reply....[] this is my writing methods, it can run successfully...!!RunningValue(Fields!Debit.Value, sum, nothing) - RunningValue(Fields!Credit.Value, sum, nothing)