General Question

E

Eric

Hi

In the report footer, I’m trying to perform a summary operation for my
currency field/for all my currency records, but I can’t find the Summary
Operations dialogue box as stated in my guidebook.

Can anybody please tell me how to find the Summary Operations dialogue box
and/or tell me the expression so that I can create one?
 
J

John Vinson

Hi

In the report footer, I’m trying to perform a summary operation for my
currency field/for all my currency records, but I can’t find the Summary
Operations dialogue box as stated in my guidebook.

Can anybody please tell me how to find the Summary Operations dialogue box
and/or tell me the expression so that I can create one?

I'm not sure what "guidebook" you're using; but you can set the
Control Source property of a report footer textbox to

=Sum([fieldname])

to sum the values in the table or query field from the Report's
recordsource.

John W. Vinson[MVP]
 
E

Eric

Thank You!
--
Thanks,
Eric


John Vinson said:
Hi

In the report footer, I’m trying to perform a summary operation for my
currency field/for all my currency records, but I can’t find the Summary
Operations dialogue box as stated in my guidebook.

Can anybody please tell me how to find the Summary Operations dialogue box
and/or tell me the expression so that I can create one?

I'm not sure what "guidebook" you're using; but you can set the
Control Source property of a report footer textbox to

=Sum([fieldname])

to sum the values in the table or query field from the Report's
recordsource.

John W. Vinson[MVP]
 
Top