Applies To
Worksheet Object.
Description
Returns a three-element array of consolidation options, as shown in the following table. If the element is True, that option is set. Read-only.
Element |
Meaning | |
1 |
Labels in top row. | |
2 |
Labels in left column. | |
3 |
Create links for data. |
See Also
Consolidate Method, ConsolidationFunction Property, ConsolidationSources Property.
Example
This example displays the consolidation options for Sheet1. The list appears on a new worksheet created by the example.
Set newSheet = Worksheets.Add aOptions = Worksheets("Sheet1").ConsolidationOptions newSheet.Range("A1").Value = "Labels in top row" newSheet.Range("A2").Value = "Labels in left column" newSheet.Range("A3").Value = "Create links for data" For i = 1 To 3 If aOptions(i) = True Then newSheet.Cells(i, 2).Value = "True" Else newSheet.Cells(i, 2).Value = "False" End If Next i newSheet.Columns("A:B").AutoFit