View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ronin Ronin is offline
external usenet poster
 
Posts: 17
Default Looping until empty column

Try

Do Until ActiveCell=""
'Put your store statement in between the "Do" & Activecell.offset
statement
ActiveCell.Offset(0,1).Select
Loop

"theguz" wrote:


Here is my dilemma. I can do VBA in Access, but for some reason I just
don't get it in excel. What I want to do is go down a column and store
that info in a variable. I want this to happen untill there is no more
data. Once I have that data I want to go to another page and store the
data in an empty column. I want the program to auto. find the empty
column. Thank You in advance.
theguz


--
theguz
------------------------------------------------------------------------
theguz's Profile: http://www.excelforum.com/member.php...o&userid=24918
View this thread: http://www.excelforum.com/showthread...hreadid=392941