Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a textbox within a group called Month that uses the following expression:

VB
=Count(IIF(Fields!la_loan_app_status.Value = "OP", 1, Nothing))


Its purpose is to count all of the rows whose la_loan_app_status has a value of "OP'. As is it works fine. Now I need to present a running value of this from month to month. I created the following expression which does not work.

VB
=RunningValue(Count(IIF(Fields!la_loan_app_status.Value = "OP", 1, Nothing)),Sum,Nothing)


Any help on what I am doing wrong would be appreciated. It does not produce an error but the values are totally incorrect.
Posted
Updated 23-Apr-15 9:13am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900