Thread: last row
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default last row

try
lastrow = Sheets("Sheet12").Cells.Find("*", searchdirection:=xlPrevious).Row
MsgBox lastrow

--
Don Guillett
SalesAid Software

"larry" wrote in message
...
is it possible to get the last row of a range,

where the range spans several columns of data?