How do I change the company name?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I use my database for several businesses. I created a template then enter
the data as needed. I want the company name to print on all the reports.
Without going into each report and changing the name, is there a way to link
this to a table? The table would be unrelated to any of the other tables.
 
There are a number of options. All involve storing the company name in a
table. You can display the value using:
-DLookup("CompanyName","tblTheCompany")
-a subreport based on the table tblTheCompany
-code in the report
 
Back
Top