View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Robert Crandal[_2_] Robert Crandal[_2_] is offline
external usenet poster
 
Posts: 158
Default Deleting entire row

The following code will delete an entire row:

Target.EntireRow.Delete

Just curious, but if I do NOT have a "Target" or
"Range" variable, is it possible to delete an entire row
using only that row's numerical index?

For example, suppose I want to delete the entire
Row #5. How do I do that?

thanks.