Below is a Excel Macro program I am trying to alter hope you can help
..................................................................................................................
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"
Range("C1").Select
Selection.Copy
Range("E1").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Range("A1").Select
Application.CutCopyMode = False
...................................................................................................................
So, I would like to make a loop (if that is the way to do it) that will increase the input in cell A1 by 1 (up to aprox 1700) on each cycle and place the answer in the next cell E1, E2, E3 etc that way I hope to avoid writing a very large program.. Thanks in advance for your help
2007-02-25
13:44:04
·
3 answers
·
asked by
digger
1
in
Computers & Internet
➔ Programming & Design