A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
When you export the Excel from Access, I believe your so called "hyperlink" is just a text, and then it turned to hyperlink when you click on it, you can use VBA to add back the hyperlink
Sub Macro1()
convtCol = "A"
For i = 1 To ActiveSheet.Range(convtCol & Rows.Count).End(xlUp).Row
ActiveSheet.Hyperlinks.Add Anchor:=Range(convtCol & i), Address:=Range(convtCol & i).Value, TextToDisplay:=Range(convtCol & i).Value
Next i
End Sub