Ok, going nuts. How do you say "go to the next cell down" in VBA? ex:
I'm pasting something into cell A23 and would normally hit enter to go to
cell A24. TIA
-Chris
Hi
activecell.offset(1,0).select
Note: In most cases no need for select / activate. Simply use
Activecell.offset(1,0).value="some value"

Signature
--
Regards
Frank Kabel
Frankfurt, Germany
> Ok, going nuts. How do you say "go to the next cell down" in VBA? ex:
> I'm pasting something into cell A23 and would normally hit enter to go to
> cell A24. TIA
>
> -Chris
THANKS! Worked Great!
> Ok, going nuts. How do you say "go to the next cell down" in VBA? ex:
> I'm pasting something into cell A23 and would normally hit enter to go to
> cell A24. TIA
>
> -Chris