View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default How do I select every 70th cell and put a symbol in it?

for i=1 to 685 step 70
cells(i,"a")=??
next i

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"cbpfaff" wrote in message
...
I want to have the program select every 70th cell and put a symbol in it.
The population is 685 cells. Can excel do this with out me having to move
and manually select?