Scenarios Object
Excel Developer Reference |
A collection of all the Scenario objects on the specified worksheet.
Remarks
A scenario is a group of input values (called changing cells) that’s named and saved.
Example
Use the Scenarios method to return the Scenarios collection. The following example creates a summary for the scenarios on the worksheet named "Options," using cells J10 and J20 as the result cells.
Visual Basic for Applications |
---|
|
Use the Add method to create a new scenario and add it to the collection. The following example adds a new scenario named "Typical" to the worksheet named "Options." The new scenario has two changing cells, A2 and A12, with the respective values 55 and 60.
Visual Basic for Applications |
---|
|
Use Scenarios(
index
), where
index
is the scenario name or index number, to return a single Scenario object. The following example shows the scenario named "Typical" on the worksheet named “Options.”
Visual Basic for Applications |
---|
|
See Also