
Signature
Duane Hookom
Microsoft Access MVP
On May 28, 12:15 pm, Duane Hookom <duanehookom@NO_SPAMhotmail.com>
wrote:
> Are First_Name and Last_Name displayed in the field list of your report's
> record source? Are there duplicates of these field names?
[quoted text clipped - 37 lines]
>
> - Show quoted text -
I tried what you suggested and believe it does not work because the
table does not contain any data yet. I was only getting #Error on the
fields that I was doing calculations on (The concatination). Boxes
that just called up one field received no error messages. I assumed
that because some of my fields did not display #Error, that the
problem was not an empty table. I tested it with an empty table
located within the database and got the same error. I guess I can't
design concatination formulas on empty tables. Learn something new
everyday. Thanks for helping.
Deb
Duane Hookom - 28 May 2008 22:28 GMT
You can avoid the #error by either making sure your report always returns
records or changing your control sources to something like:
=IIf([HasData], [FirstName] & " " & [LastName],Null)

Signature
Duane Hookom
Microsoft Access MVP
> On May 28, 12:15 pm, Duane Hookom <duanehookom@NO_SPAMhotmail.com>
> wrote:
[quoted text clipped - 51 lines]
>
> Deb