Thread
:
How do I select every 70th cell and put a symbol in it?
View Single Post
#
2
Posted to microsoft.public.excel.misc
Don Guillett
external usenet poster
Posts: 10,124
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?
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett