What direction was it that you took? (It's unclear from the end of this thread as it stands).
In a report (or form) you can count all rows in a similar way to a query.
In a textbox use the expression
=Count(*)
By default - the Count function counts only non-Null values.
The Count(*) expression circumvents this - by
not specifying a field - it counts rows and is optimised to do so (you're unlikely to ever be able to detect this though
However if there is a specific field you want to count - then specifying that field will count only the non-Null entries.
=Count([FieldName])
I dare say that's the way you went?
But it's best to make it clear for future readers.
Cheers.