View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
eric lecocq[_2_] eric lecocq[_2_] is offline
external usenet poster
 
Posts: 2
Default Assigning a row to a variable

dim myvariable as row

set myvariable = row("1:1")
myvariable.select





"Todd" wrote in message
...
Hi all,

Have one that's driving me nuts:

I need to look at a column and find the last populated
cell of that column. Then I need to determine the first
blank row below that cell. My trouble is the next part...I
don't want to select this row or anything, I want to
assign a variable to it for use in another sub.

Hope I explained this clearly

Todd