Hi I am trying to use resize to make a range, and I want to use cells in my excel sheet to determine the resize value. Everything works fine for a positive resize (to the right or down). But I cant get it to work for a negative resize. What is the issue with my code?
This Works
This Doesn't![]()
Set Left = A.Resize(1, Range("B1").Value)
![]()
Set Left = A.Resize(1, -Range("B1").Value)
Bookmarks