#Error when doing a report calculation

G

Guest

I have a table that categorized the hours worked on a job. I builit a
standard query to sort by dates. I built a report showing each person and
the associated hours they spent on the job. In the footer I want to total
the "field billable" hours.
I put in a text box with sum([field billable]). When I view the report, I
get the
#Error in the text box.
 
D

Douglas J. Steele

Is it possible field billable might be Null on one or more records?

See whether sum(Nz([field billable])) makes a difference
 
G

Guest

Still getting the same error. I eliminated all but one record in the table.
The
field billable value is 2.

Douglas J. Steele said:
Is it possible field billable might be Null on one or more records?

See whether sum(Nz([field billable])) makes a difference

--
Doug Steele, Microsoft Access MVP

(No private e-mails, please)


Dirk_Bob said:
I have a table that categorized the hours worked on a job. I builit a
standard query to sort by dates. I built a report showing each person and
the associated hours they spent on the job. In the footer I want to total
the "field billable" hours.
I put in a text box with sum([field billable]). When I view the report, I
get the
#Error in the text box.
 

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