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

something like
for each c in selection
if c.interior.colorindex=6 then c.rows.delete
next

--
Don Guillett
SalesAid Software

"Amber" wrote in message
...
In my spreadsheet I have yellow lines that say result. I want to delete

these lines. How would I do this?