Thread
:
Selecting the first blank cell in a column
View Single Post
#
1
Posted to microsoft.public.excel.programming
Don Guillett
external usenet poster
Posts: 10,124
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
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett