I have a named range "ABC", range is ("A1", "A3", "A5"). Now I need to use Macro to extend the range to ("A1", "A3", "A5", "A7"), that is, adding "A7" to the existing named range "ABC".
Any ideas to solve this problem?
Thanks in advance!
Application.Union(Range("BLAH"), Range("A7")).Name = "BLAH"