Hi, I'm attempting to define a range based on the union of two ranges.
Code:
Dim rUnion As Range, r1 As Range, r2 As Range
Set r1 = Range("GJ7:GP7")
Set r2 = Range("GS7")
Set rUnion = Union(r1, r2)
Debug.Print rUnion(1).Address
Debug.Print rUnion(2).Address...