Thanks beyond_Excel! Curious if you / anyone sees an issue with how I ended up doing it. See attached excel // code below:
PHP Code:
Sub Run_All_Scenarios()
Dim i As Integer
Application.ScreenUpdating = False
For i = 1 To Range("Scenario_Total")
Worksheets("Model").Activate
Range("Scenario_Nb") = i
Application.Goto Reference:="Results"
Selection.Copy
Worksheets("Data Tape").Activate
Range("First_Scenario").Offset(i - 1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=True
Next
Application.ScreenUpdating = True
End Sub
Bookmarks