what I did was for each of the totals which produced the final total, dispatchprofit do the following
Dispatch Net Total MLA = Sum ({@Net Total MLA},{SHIPMENTS_TTX.PICKUPDATE}, "monthly")
and
MLT Net Total US = Sum ({@MLT Net Total},{SHIPMENTS_TTX.PICKUPDATE}, "monthly")
then suppress everything except my chart in the report footer to display on change of the following:
if {@Pickup Date} >= {@Min Date} and {@Pickup Date}<= {@Max Date} then
"'" &
Right(Left(ToText (Year ({@Pickup Date})),InStr (ToText (Year ({@Pickup Date})),'.')-1),2) &
" " &
{@Month Place}&Left(ToText (Month ({@Pickup Date})),InStr (ToText (Month ({@Pickup Date})),'.')-1) &
MonthName (Month ({@Pickup Date}))
where Min and Max date are the min and max of a parameter field before the report is run.