Running total in SSRS report
Today we have a requirement to show the running total in the new color, for example, debit-credit will show in the 3rd coloum and as per the grouping also ..
=RunningValue(iif(Fields!AmountCur.Value > 0, Fields!AmountCur.Value, 0) + iif(Fields!AmountCur.Value < 0, Fields!AmountCur.Value, 0), Sum , "Grouping1_0")
Grouping1_0 -- grouping name in SSRS report
Comments
Post a Comment