Report Calculation

J

Joyce

I need to show on a report the count of all recoreds
(CaseID) in my database, then show the count of records
that are resolved (DateResolved) then unresulved which
would be the total of the (CaseID) less (DateResolved).
I'm not sure how to note this in the expression builder.
Any help would be appriciated. Thank you.
 
M

Marshall Barton

Joyce said:
I need to show on a report the count of all recoreds
(CaseID) in my database, then show the count of records
that are resolved (DateResolved) then unresulved which
would be the total of the (CaseID) less (DateResolved).
I'm not sure how to note this in the expression builder.


Use text boxes in the REPORT footer section (not the page
footer). The expression for total number of records in the
report is:
=Count(*)
and an expression for the number of resolved records:
=Count(DateResolved)

If I misunderstood what DateResolved is, post back with more
info about how DateResolved is used.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top