Thread: Macro Help
View Single Post
  #4   Report Post  
DME
 
Posts: n/a
Default

Chuck-

This is exactly what I needed. Aprreciate the help!




"CLR" wrote in message
...
Sub SelectNextCell()
'assumes data starting in C5, will take cursor to bottom of data and
step
'down to next blank cell
Application.Goto Reference:="R5C3"
Selection.End(xlDown).Select
Selection.Offset(1, 0).Select
End Sub

Vaya con Dios,
Chuck, CABGx3


"DME" <craigjoseathotmaildotcom wrote in message
...
I need to run a Macro(set up a command button) that will take me to the

next
open box in a specific column. For instance if I have data in Cells C5

to
C11. I want to run a macro to select cell C12.

I have tried but not being very successful.

I currently have a macro that is setup to run a macro from the cell I am

on
(user has to select C12 currently). I want to be able the user to just

run
the macro by pressing the command button rather than having to going to

cell
c12 then running the macro. In essence, make the process dummy proof.

I
have users currently who cannot seem to select the next open cell in the
correct column.

My boss thinks this is impossible, but I told him all I have to do is

post
the question out here. This group has made me look like a genius on

more
than one ocassion. Thanks!