TomBoardman
Programmer
I have several groups with a title "A", "B",etc up to about "H". In the groupfooter I have a summary field for the numeric field in each group. In the report header I have columns titled "A", "B" up to "H". Under each column heading I want to print the group total in the corresponding groupfooter. I have a formula field in the group footer that uses a Select Case statement. For example
Global VarA as number
Global VarB as number
Select case Groupname
case "A"
VarA=Sum of group
case "B"
VarB=Sum of group
so on
I then have a formula field in the rep header
Global VarA as number
formula=VarA
But my VarA is 0. I've tried using the WhilePrintingRecords but no success. Where am I screwed up?
Tom
Global VarA as number
Global VarB as number
Select case Groupname
case "A"
VarA=Sum of group
case "B"
VarB=Sum of group
so on
I then have a formula field in the rep header
Global VarA as number
formula=VarA
But my VarA is 0. I've tried using the WhilePrintingRecords but no success. Where am I screwed up?
Tom