Ok, this is what I did:
WhilePrintingRecords;
NumberVar JanTotal;
NumberVar FebTotal;
etc...
If Month({PJPROJ.end_date}) = 1 and year ({PJPROJ.end_date}) = year (CurrentDate)
Then JanTotal := JanTotal + {vr_RVI_ProfitByJob.eac_Revenue}
Else
If Month({PJPROJ.end_date}) = 2 and year ({PJPROJ.end_date}) = year (CurrentDate)
Then FebTotal := FebTotal + {vr_RVI_ProfitByJob.eac_Revenue}
etc...
WhilePrintingRecords;
NumberVar JanTotal;
This is making a running total and I am not able to have Sub and Grand Totals on Groups. How do I adjust it to have detail per line item by month column and have the ability to do sub group and grand totals?
WhilePrintingRecords;
NumberVar JanTotal;
NumberVar FebTotal;
etc...
If Month({PJPROJ.end_date}) = 1 and year ({PJPROJ.end_date}) = year (CurrentDate)
Then JanTotal := JanTotal + {vr_RVI_ProfitByJob.eac_Revenue}
Else
If Month({PJPROJ.end_date}) = 2 and year ({PJPROJ.end_date}) = year (CurrentDate)
Then FebTotal := FebTotal + {vr_RVI_ProfitByJob.eac_Revenue}
etc...
WhilePrintingRecords;
NumberVar JanTotal;
This is making a running total and I am not able to have Sub and Grand Totals on Groups. How do I adjust it to have detail per line item by month column and have the ability to do sub group and grand totals?