ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Copy all Screentips (https://www.excelbanter.com/excel-discussion-misc-queries/22897-copy-all-screentips.html)

brmauer

Copy all Screentips
 
I have a range of cells and in each cell is a hyperlink. Assocaiated with
each hyperlink is a screentip. What code would you use to go to each cell
and get the screentip and put in an array?

Rowan

This should help:

Sub ScreenTip()

Dim hp As Hyperlink
Dim stArray() As Variant
Dim i As Integer

i = 0
For Each hp In ActiveSheet.Hyperlinks
ReDim Preserve stArray(i)
stArray(i) = hp.ScreenTip
i = i + 1
Next hp

'Do something with stArray

End Sub

Regards
Rowan

"brmauer" wrote:

I have a range of cells and in each cell is a hyperlink. Assocaiated with
each hyperlink is a screentip. What code would you use to go to each cell
and get the screentip and put in an array?



All times are GMT +1. The time now is 09:04 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com