I think the problem lies in the fact that Amber needs a Minimum and Maximum of the weekly totals not a min/max on each detail line and you can't do a min/Max on the weekly group summary. if that is the case, I would use a formula to calculate my own Min/max in the weekly group footer and then a running total like Steve says. Here is a quick formula I created for Maximum of just the credit amounts. .
shared numbervar MyMax;
if (MyMax<Sum ({GL_DetailPosting.CreditAmount}, {GL_DetailPosting.PostingDate}, ""weekly"")) then MyMax:= Sum ({GL_DetailPosting.CreditAmount}, {GL_DetailPosting.PostingDate}, ""weekly"");
mymax
The formula for the minimum is similar but you would first need to start your shared variable for the minimum to be a very high value so that it gets assigned with a value at the first week group footer.