Thread: DownArrow?
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_3_] Dave Peterson[_3_] is offline
external usenet poster
 
Posts: 2,824
Default DownArrow?

Selection.End(xlDown).Select
would become:
Selection.End(xlDown).offset(1,0).Select

CLR wrote:

Hi All...........

This code gets me to the last cell in Column A that contains data, but then
I want to go down one more row.........how to do that please?

Application.Goto Reference:="R8C1"
Selection.End(xlDown).Select

TIA
Vaya con Dios,
Chuck, CABGx3


--

Dave Peterson