View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Delete contents in cells with macro

Sub clearcells()
ActiveCell.Resize(1, 10).ClearContents
End Sub

--
Don Guillett
SalesAid Software

"dford" wrote in message
...
I would like to select any cell and delete the contents in that cell and 10
cells to the right of that cell. Can I create a macro to do that?