Forum Discussion
Sameer_Kuppanath_Sultan
Oct 05, 2019Brass Contributor
How to insert a hyper ink to select multiple ranges in a shape (No VBA)
How to select multiple ranges by using hyper link in a shape in excel? for eg: I have to select range(a1:c5) and range(x1:ab5) by one click on the shape.
Subodh_Tiwari_sktneer
Oct 05, 2019Silver Contributor
You can simply try the following code...
Sub SelectRanges()
Range("A1:C5,X1:AB5").Select
End Sub
And then assign this code to any shape of your choice.
Please refer to the attached for more details.