Thread: VBA
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Leith Ross[_462_] Leith Ross[_462_] is offline
external usenet poster
 
Posts: 1
Default VBA


Hello missk,

*To find the last row in column "C":*
LastRow = ActiveSheet.Cells(Rows.Count, "C").End(xlUp).Row

*To fill the Range using the Formula in cell E5:*
ActiveSheet.Range("E5", "E" & LastRow).FillDown

Sincerely,
Leith Ross


--
Leith Ross
------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=500981