Merge Method
Merge method as it applies to the Scenarios object.
Merges the scenarios from another sheet into the Scenarios collection.
expression.Merge(Source)
expression Required. An expression that returns the Scenarios object.
Source Required Variant. The name of the sheet that contains scenarios to be merged, or a Worksheet object that represents that sheet.
Merge method as it applies to the Styles object.
Merge method as it applies to the Range object.
Creates a merged cell from the specified Range object.
expression.Merge(Across)
expression Required. An expression that returns the Range object.
Across Optional Variant. True to merge cells in each row of the specified range as separate merged cells. The default value is False.
Remarks
The value of a merged range is specified in the cell of the range's upper-left corner.
Example
This example merges the styles from the workbook Template.xls into the active workbook.
ActiveWorkbook.Styles.Merge Workbook:=Workbooks("TEMPLATE.XLS")