johanna1128
New Member
- Joined
- May 15, 2016
- Messages
- 2
I'am trying to place a macro code to copy Monte Carlo simulation results from a "results" sheet to the "simulation results" sheet. I browsed plenty of forums and solutions bit my macro is still not working as I want.
This is my last version that is work but tt copies and paste values only to the from result sheet B3:C3 to the simulation results sheet B7:C7 cells. In turn, it shoud copy all 100 values and paste them under each other.
Index = 0
Do While Index <= 100
Sheets("result").Range("B3:C3").Copy
Sheets("simulation results").Range("B7:C7").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Index = Index + 1
Loop
I really do not know what else can I put in it to work as I want and I would really appreciate if anyone could help me. Thanks!
This is my last version that is work but tt copies and paste values only to the from result sheet B3:C3 to the simulation results sheet B7:C7 cells. In turn, it shoud copy all 100 values and paste them under each other.
Index = 0
Do While Index <= 100
Sheets("result").Range("B3:C3").Copy
Sheets("simulation results").Range("B7:C7").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Index = Index + 1
Loop
I really do not know what else can I put in it to work as I want and I would really appreciate if anyone could help me. Thanks!