A family of Microsoft relational database management systems designed for ease of use.
Open your Excel workbook.
Press Alt+F11 to activate the Visual Basic Editor.
Select Insert > Module.
Create the following function:
Function Link4Access(rng As Range) As String
With rng.Hyperlinks(1)
Link4Access = .TextToDisplay & "#" & _
.Address & "#" & .SubAddress
End With
End Function
Switch back to Excel.
Let's say the hyperlinks are in column C.
Insert a blank column in column D
Enter a title in D1, e.g. EmailAddress.
Enter the formula =Link4Access(C2) in D2.
Fill down to the end of the data.
Save the workbook (if you want to keep the VBA code, it must be a .xlsm, .xlsb or .xls workbook, not .xlsx)
Now import into Access, and use the new column as hyperlink. (You can skip the original column)