Execute count function on unbound calculation field?

J

Julianne

In a report, I would like to create an text box that does a count function on
another unbound calculated text box. E.G., Field1 = sum([Number of Cars
Sold]) for this record. Field2 = count([Field1]). How do I create a text
box that will count Field1 (a calculation) in a report footer? Thank you for
sharing your knowledge! Much gratitude and appreciation.
 
G

George Nicholson

Sorry, do you want:

1) Sum(Count([NumberOfCarsSold]))
or
2) Count(Number of times sum([NumberOfCarsSold]) has been calculated)


HTH,
 
Top