View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Selecting the first blank cell in a column

In the absense of more detail, this should do what you want. However,
selections are usually not desireable or necessary.

Sub gotonextblank()
ActiveCell.End(xlDown).Offset(1).Select
End Sub

--
Don Guillett
SalesAid Software

"BZeyger" wrote in message
...
I am tring to program in excel and I am having a hard time selecting the
first blank cell in a column. There is data throughout and i want the
first
blank cell to be slected. I have tried using the Ctrl down... Can someone
help me out... I know its simple but I am just getting started in VBA.

Thanks