Snake Eyes
Board Regular
- Joined
- Dec 14, 2010
- Messages
- 103
- Office Version
- 365
- 2016
- Platform
- Windows
Greetings all.
I get the is error when I run the following macro in Excel 2010. I have tried a reboot and I have 5.2 GB of free Ram. Can anyone tell me what I can do to get past this error.
I get the is error when I run the following macro in Excel 2010. I have tried a reboot and I have 5.2 GB of free Ram. Can anyone tell me what I can do to get past this error.
Code:
Sub Reset_Hyperlinks()'
' Reset_Hyperlinks Macro
'
Dim hl As Hyperlink
For Each hl In ActiveSheet.Hyperlinks
hl.Address = Replace(hl.Address, "C:\Users\mayala\Application Data\Microsoft\", "G:\Data Files\VMS\")
Next
'
End Sub