Initial Caps

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

Guest

When I export data from a database, the company field exports a number not the actual data. Is there a way to get the data to export correctly? The company & location fields are linked to the general table. Thanks
 
my guess is that the db has a separate table with company name and other
info, and the "number" you're seeing in the export is the company table's
primary key (as a foreign key in the general table).

you need to identify the source of the company name that you're used to
seeing in the database. suggest you check the Relationships window to see if
a relationship is defined on that "number" field. or you can check any form
that has a combo box that lists the company name, to see what table is used
in the combo box's record source.

once you identify the table that holds the company names, create a query,
and link the general table and company table on the company table's primary
key field and the general table's "company" (number) field. then select the
fields you want to export, including the actual company name from the linked
table. you can then export the query object.

hth


sbsmith said:
When I export data from a database, the company field exports a number not
the actual data. Is there a way to get the data to export correctly? The
company & location fields are linked to the general table. Thanks
 
Thanks Tin

----- tina wrote: ----

my guess is that the db has a separate table with company name and othe
info, and the "number" you're seeing in the export is the company table'
primary key (as a foreign key in the general table)

you need to identify the source of the company name that you're used t
seeing in the database. suggest you check the Relationships window to see i
a relationship is defined on that "number" field. or you can check any for
that has a combo box that lists the company name, to see what table is use
in the combo box's record source

once you identify the table that holds the company names, create a query
and link the general table and company table on the company table's primar
key field and the general table's "company" (number) field. then select th
fields you want to export, including the actual company name from the linke
table. you can then export the query object

ht


sbsmith said:
When I export data from a database, the company field exports a number no
the actual data. Is there a way to get the data to export correctly? Th
company & location fields are linked to the general table. Thank
 
Back
Top