View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_264_] mudraker[_264_] is offline
external usenet poster
 
Posts: 1
Default New to VBA question

This line of code will give you the last row used in column A

RowNo = Range("a" & Rows.Count).End(xlUp).Row


This line of code will give you the row beneath the last used row i
column A

RowNo = Range("a" & Rows.Count).End(xlUp).Row +

--
Message posted from http://www.ExcelForum.com