View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Alex Simmons Alex Simmons is offline
external usenet poster
 
Posts: 15
Default Select random cell from defined range

On Apr 13, 12:51*pm, Tanya wrote:
Hi
I have 5 cells [range is I13:I17] each with a hyperlink to a wav file and I
would like to have a macro that randomly selects these cells to enable the
hyperlink.
Is this possible?
cheers
Tanya


This code will work and follow the hyperlink:

Sub RandomLink()

Dim rngTargetCell As Range
Dim iRandomNumber As Integer

Set rngTargetCell = Nothing

Randomize
iRandomNumber = Int(5 * Rnd + 13)
Set rngTargetCell = Range("I" & iRandomNumber)

rngTargetCell.Hyperlinks(1).Follow
End Sub