Created
February 27, 2020 17:20
-
-
Save maokwen/1d6c4922cfc83dabd405b89237fab77b to your computer and use it in GitHub Desktop.
Remove hyperlink from pictures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub hyper() | |
| Dim shp As Shape | |
| For Each shp In ActiveSheet.Shapes | |
| If shp.Hyperlink.Address <> "" Then shp.Hyperlink.Delete | |
| Next shp | |
| End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment