My apologies - just realised you are using a pivot table (D'Oh! - I blame lack of coffee). The help files provide a way - copy the following into a new module in your project (in the VBE right-click on your workbook in the top left Project window and choose Insert>Module - type the code into the code window that will open), amend the sheet name to whichever holds the pivot table and click Run - it should create a new sheet with the same data as above:
Richard





by: RichardSchollarPosted on 2009-03-26 at 01:35:47ID: 23988210
Hi
With this sheet which would contain the data returned visible on your Excel screen, open up the VBE (Alt+F11), then open up the Immediate Window (Ctrl+G) and type the following into it and press Enter:
?Activesheet.QueryTa bles(1).Co nnection
Th is will return what the actual connection string is which shouldlist what DSN it is using.
Richard