RESIZE PROPERTY: is it possible to resize "up" and "to the left"?

M

Myles

Suppose I have Range D10 as pivot. Is it possible to resize to E5:H10
The logical *Range("D10").Resize(-3,-5)* fails. Can the rowsize
columnsize arguments be made to take on negative values?


Myles
 
F

Frederick Chow

Hi Myles,

Not possible for the Resize method's argument to take on negative values.

But why not try this instead:

Range("D10").Offset(-6,1).Resize(4,6)

Frederick Chow
Hong Kong
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top