View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
kkknie[_38_] kkknie[_38_] is offline
external usenet poster
 
Posts: 1
Default selecting the last non blank row.

Assuming your data was in column A, use:

Range("A65536").End(xlUp).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone
SkipBlanks:=False, Transpose:=False
Application.CutCopyMode = False



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