I have a report which must include a Company's name in it.
My database has a Global form (tied to a Global table) which contains the user's company information and one field is CompanyName. There is only one record in this table - the company's information.
In my report, I want to display the Company name - is there an easy way to reference this name in a text box? At the moment I am using :
=Dlookup("[CompanyName]","[Global]")
I have quite a few fields to display such things on the report, but is this an appropriate way to do it? Will a report with many records work OK with so many domain functions in it?
My database has a Global form (tied to a Global table) which contains the user's company information and one field is CompanyName. There is only one record in this table - the company's information.
In my report, I want to display the Company name - is there an easy way to reference this name in a text box? At the moment I am using :
=Dlookup("[CompanyName]","[Global]")
I have quite a few fields to display such things on the report, but is this an appropriate way to do it? Will a report with many records work OK with so many domain functions in it?