IT-Academy

Odstran odkazy

Nov 30th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  
  3. Sub odstranHypertext()
  4.    
  5.     Dim hyp As Hyperlink
  6.    
  7.     For Each hyp In ActiveSheet.Hyperlinks
  8.         hyp.Delete
  9.     Next
  10.    
  11. End Sub
  12.  
  13.  
  14.  
  15.  
  16. Sub odstranHypertextsTextom()
  17.    
  18.     Dim hyp As Hyperlink
  19.    
  20.     For Each hyp In ActiveSheet.Hyperlinks
  21.         hyp.Range.Delete
  22.     Next
  23.    
  24. End Sub
Advertisement
Add Comment
Please, Sign In to add comment