When do my royalty checks start arriving?
For starters, the detail section seems unusually tall. I would typically drag it up to just below the fields. Does the table/query return records, and is there data in those fields? Offhand, what you have looks correct.
That looks okay. Can you post the db here?
You'll have to walk me through that one -- how do you upload a database to a forum?
If you click on Reply to Thread or Go Advanced you'll see a Manage Attachments button below where you type. Typically if you compact/repair then zip it should be small enough to attach.
Here is the zipped and repaired/compacted file.
Thank you. That worked! The detail information now shows in the print preview.
Are you available for another question: This is the error message I get when trying to concatenate the first and last names in the qryInvoice file. Thanks again. I appreciate the help. The error message seems simply enough -- it appears as though it could be resolved be eliminating the duplicate first/last fields in the other tables. But this is my first db and I'm afraid to start deleting anything.
![]()
Last edited by snowboarder234; 02-22-2012 at 05:41 PM. Reason: To be more specific.
The error is because you have a field named "First" in more than one of the tables/queries in the FROM clause (you'll get the same error on "Last". The solution is to disambiguate it by specifying the table/query:
FullName: TableName.First & " " & TableName.Last