Report Reference

D

DS

I have an unbound textbox in a report group footer, it refers to a bound
textbox in the same groups header. It's not returning a value. The report
is called rptFXWalkOut. The field is ChkServer. Any help appreciated.
Thanks
DS

=Nz(DCount("CheckID","tblWalkOut","ChkServer= Report.Report.ChkServer"),0)
 
D

Duane Hookom

Is the control named ChkServer or is this the name of the control? Is the
value numeric or text? If it is numeric, you should be able to use:

=Nz(DCount("CheckID","tblWalkOut","ChkServer= " & [ChkServer]),0)

If ChkServer is text, try:
=Nz(DCount("CheckID","tblWalkOut","ChkServer= """ & [ChkServer] & """"),0)
 
D

DS

Thanks Duane, this worked.
=Nz(DCount("CheckID","tblWalkOut","ChkServer= " & [ChkServer]),0)
DS
 

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

Similar Threads


Top