Hi Harley,
1) Access tables don't and can't contain formulas, only data.
2) Irritatingly, Excel hyperlinks don't seem to import properly. At
the end of this messages I've posted a little Excel custom worksheet
function which converts the contents of an Excel hyperlink cell into a
string that does the same job in an Access hyperlink field.
Add a column to the worksheet and use ExpandHyperlink() formulas in
it. Then either import the result to a hyperlink field in an existing
table or import to a new table. If the latter, the hyperlinks will be
in a text or memo field; convert it to a hyperlink field.
I am trying to import an excel spreadsheet with columns of hyperlinks into a
table in access. When I import the spreadsheet it looses all functions and
formulas. Any ideas?
Public Function ExpandHyperlink(R As Range, _
Optional AddressOnly As Boolean = False) As Variant
'Converts Excel hyperlink into a string that can be
'imported into an Access text field which can then
'be converted into a hyperlink field.
If R.Hyperlinks.Count > 0 Then
With R.Hyperlinks(1)
ExpandHyperlink = IIf(AddressOnly, .Address, _
.Name & "#" & .Address & "#" & .SubAddress)
End With
Else
ExpandHyperlink = ""
End If
End Function