I have a text box in a group that displays the sum of the values in 3 other text boxes (within the same group):
Field Name: Control Source:
textBox1 dlookup(...)
textBox2 dlookup(...)
textBox3 dlookup(...)
Total =nz(Reports![Report]!textBox1,0)+nz (Reports![Report]!textBox2,0)+nz(Reports![Report]!textBox3,0)
Each row in the group looks like this:
textBox1 textBox2 textBox3 Total
I have a TOTALS row where I total up the columns for each row. I also want to get the sum of the Total column...I have tried:
That didn't give me an error - but didn't total anything.
This one asked me for a [Total] parameter when I ran the report.
Looks like it should be an easy solution...
Sandy
Field Name: Control Source:
textBox1 dlookup(...)
textBox2 dlookup(...)
textBox3 dlookup(...)
Total =nz(Reports![Report]!textBox1,0)+nz (Reports![Report]!textBox2,0)+nz(Reports![Report]!textBox3,0)
Each row in the group looks like this:
textBox1 textBox2 textBox3 Total
I have a TOTALS row where I total up the columns for each row. I also want to get the sum of the Total column...I have tried:
Code:
=sum(Reports![NameofReport]![Total])
Code:
=sum([Total])
Looks like it should be an easy solution...
Sandy