Hello.
Can you please help me with this Excel VBA problem ? I have created a macro, that calculates a value in Solver for i times, where i is integer variable from 1 to 10. Then it copies answer from a designated cell and pastes it in cell A1 for example. I would like to see it write answers in cells Ai, that means A1 to A10.
.....
Range("B1").Select
Selection.Copy
Range("A1").Select (i would like to change this particular line to some thing meaning Ai... A1,A2,...,A10)
...
So for the first calculation it writes to cell A1, for second to A2 and so on.
A B
i Value
1 5
2 10
3 15
4 20
etc...
E
Thank you in advance.![]()
Bookmarks