Query Recordset sent to Excel

G

gr

Hi all,

I am sending a recordset to Excel. The recordset is from a
query output.
It works fine except that I have some fiels which are
items
choosen from comboboxes. So when the recordset is sent to
Excel, instead of displaying the values from the query, it
is displaying numbers. I think this has to do with the
Bound Columns or something of the combo box properties..

how to make excel display the "real" values?

Ex.
My query in access
Smith Sales Doc1 Finished GMD
Ravanni PIBDE Doc2 In progress SER
Ramon Sales Doc3 Finished SER

The same data in Excel
1 1 Doc1 1 1
2 2 Doc2 2 2
3 1 Doc3 1 2

Thx,
gr
 
G

gr

Thank you, I read the article... but then what is a good
practice design instead of using lookup fields?? other
alternative offering the same result without all these
disadvantages?
 
A

Arvin Meyer

gr said:
Thank you, I read the article... but then what is a good
practice design instead of using lookup fields?? other
alternative offering the same result without all these
disadvantages?

Create a query. Base your recordset on the query:

Select * From qryWhatever

With a query, you can add as many tables as necessary to get the values you
want.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top