Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Report Footer Calculation

Status
Not open for further replies.

proximity

Technical User
Sep 19, 2002
132
GB
In a report footer, I have the following calculations:

Total 1: =Count([field_1])
Total 2: =Count([field_2])

How do I calculate the difference between the two figures? I have tried everything I can think of . . . .

Sorry if this is a simple thing, but it is vexing me!
 
Depending on the desired order:
Code:
=Count([field_1]) - Count([field_2])
or
Code:
=Count([field_2]) - Count([field_1])
in the report footer control....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top