It sounds like you are trying to create a manual running total, so you would use three formulas:
//{@reset} to be placed in the Group 1 (Date) header:
whileprintingrecords;
numbervar grpsum := 0;
//{@accum} to be placed in the group 2 header or footer:
whileprintingrecords;
numbervar grpsum := grpsum + sum({table.amt},{table.group2field});
//{@display} to be placed in the group 1 (Date) footer:
whileprintingrecords;
numbervar grpsum;
Since you said you were trying to summarize a summary, I assumed the summary was for an inner group (e.g., on {table.group2field}). Substitute your own summary for sum({table.amt},{table.group2field}).
If this isn't what you are looking for, please share your formulas and explain in what sections you are placing them.
-LB