I have a one-cell range named "FirstRow" in a sheet named "Reports". The cell is A22. I want to resize the range to be 10 rows (still one column). The following code line produces the error shown below:
Sheets("Reports").Range("FirstRow").Resize (10)
Run-time error '438':
Object doesn't support this property or method
Same error occurs with:
Sheets("Reports").Range("A22").Resize (10)
I tried on Excel 2007 w/ Vista and Excel 2010 w/ Win 7 -- same result
Why isn't this working? Thanks in advance for any help.
hooroy
Sheets("Reports").Range("FirstRow").Resize (10)
Run-time error '438':
Object doesn't support this property or method
Same error occurs with:
Sheets("Reports").Range("A22").Resize (10)
I tried on Excel 2007 w/ Vista and Excel 2010 w/ Win 7 -- same result
Why isn't this working? Thanks in advance for any help.
hooroy