I have the following data :
Month Target Actual IsLastCompletedMonth
1 10 5 No
2 15 3 No
3 12 7 No
4 8 4 Yes
5 10 0 No
6 12 0 No
I need some way of identifying the last completed month in my calculations in a text box on the report. I have tried the following but it only tells me if the first record is the last completed month.
=IIF(Fields!IsLastCompletedMonth.Value = "Yes", Fields!Month.Value, "No Month Completed")
Can anybody help?
Month Target Actual IsLastCompletedMonth
1 10 5 No
2 15 3 No
3 12 7 No
4 8 4 Yes
5 10 0 No
6 12 0 No
I need some way of identifying the last completed month in my calculations in a text box on the report. I have tried the following but it only tells me if the first record is the last completed month.
=IIF(Fields!IsLastCompletedMonth.Value = "Yes", Fields!Month.Value, "No Month Completed")
Can anybody help?