View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
tkstock[_22_] tkstock[_22_] is offline
external usenet poster
 
Posts: 1
Default Better way of finding last row on sheet


Do you have formulas in cells 4 thru 26? This would cause your
problem.

You could also do something like


Code:
--------------------
Range("A1").Select
While Activecell.Value < ""
Selection.Offset(1,0).Select
Wend
--------------------


HTH


--
tkstock


------------------------------------------------------------------------
tkstock's Profile: http://www.excelforum.com/member.php...o&userid=14443
View this thread: http://www.excelforum.com/showthread...hreadid=379635