Hi,
Can you please advise on how to delete hyperlinks from a specific range (and not the entire worksheet) in an Excel worksheet ? Since the getHyperlinks() method is visible only at the worksheet level, iterating through cells in the range and clearing the hyperlinks cell-by-cell does not seem to be an option.
The VBA code for reference is as follows,
> If range.Hyperlinks.Count > 0 Then
> While range.Hyperlinks.Count > 0
> range.Hyperlinks(1).Delete
> Wend
> End If
Thanks