LB,
Even my Manula corss Tab is not working,
I created formula Month no:
WhileReadingRecords;
If MOnth({Command.DECISION_DATE}) = Month({?Report_Date})
and
Year({Command.DECISION_DATE}) = Year({?Report_Date})
then 1
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-1,{?Report_Date}))then 2
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-2,{?Report_Date}))then 3
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-3,{?Report_Date}))then 4
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-4,{?Report_Date}))then 5
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-5,{?Report_Date}))then 6
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-6,{?Report_Date}))then 7
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-7,{?Report_Date}))then 8
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-8,{?Report_Date}))then 9
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-9,{?Report_Date}))then 10
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-10,{?Report_Date}))then 11
else if MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-11,{?Report_Date}))
then 12
else if
MOnth({Command.DECISION_DATE}) = Month(DateAdd("m",-12,{?Report_Date}))
and
Year({Command.DECISION_DATE}) = Year({?Report_Date}) -1
then 13
Then in runing toal I am summing up the formula on chnage of UPI and rest on formul
month no <> 1 for first month and so on. ANy help?