Guest_imported
New member
- Jan 1, 1970
- 0
How can I do , in VBA, same operations on multiples selections (cells selected with CTRL )?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim oSelect As Range
Set oSelect = Union([A1:A5], [B6:B10], [C11:c15])
oSelect.Select