Is that an **exact** copy of the line? If so, remove the apostrophe from in
front of the keyword Destination... that apostrophe is telling VB that
everything after it is a comment.
I have a question about your code... do you set the Sh1RowCount, Sh2RowCount
and Sh3RowCount variables to a value of 1 or greater in your code **before**
the code you posted? I ask because if you don't, then the first time you try
to use them they will be 0 and some of your code lines will fail.
Rick
>I am running Excel 2003 and I get the Run time error '438' Object doesn't
> support this property or method msg box.
[quoted text clipped - 26 lines]
>
> Thanks
Novice Lee - 31 Jul 2008 16:18 GMT
I got rid of the apostrophe after I relized it was there. I have each
Sh*rowcount=2
> Is that an **exact** copy of the line? If so, remove the apostrophe from in
> front of the keyword Destination... that apostrophe is telling VB that
[quoted text clipped - 37 lines]
> >
> > Thanks
Rick Rothstein (MVP - VB) - 31 Jul 2008 16:30 GMT
And is your code working now or not?
Also, just to be clear in case the answer to the above is "not", do you have
the Sh*rowcount=2 assignments set before the code you showed us?
Rick
>I got rid of the apostrophe after I relized it was there. I have each
> Sh*rowcount=2
[quoted text clipped - 45 lines]
>> >
>> > Thanks
try changing this part to be as below
Rows(Sh1RowCount).Copy
Selection.Copy
Should work. Post back if you have problems.
>I am running Excel 2003 and I get the Run time error '438' Object doesn't
>support this property or method msg box.
[quoted text clipped - 26 lines]
>
>Thanks
Novice Lee - 31 Jul 2008 17:38 GMT
Which part do I change?
> try changing this part to be as below
>
[quoted text clipped - 33 lines]
> >
> >Thanks