Hi Dennis,
Try posting your export code.
---
Regards,
Norman
> Excel 2003
>
[quoted text clipped - 7 lines]
> that contains the hyperlink data so I can run the code from the KB
> article.
Dennis - 28 Feb 2006 13:41 GMT
Code to export to Excel...
Dim stDocName As String
stDocName = "Table1 Query"
DoCmd.OutputTo acReport, stDocName, acFormatXLS, "c:\dennis\test.xls"
Code from KB271856...
Sub HyperAdd()
'
' Converts each text hyperlink selected into a working hyperlink
'
For Each xCell In Selection
ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula
Next xCell
'
'
End Sub

Signature
Dennis
> Hi Dennis,
>
[quoted text clipped - 15 lines]
> > that contains the hyperlink data so I can run the code from the KB
> > article.