Returns the number of items in a collection, depending on the collection.
Dimensions.Count
Returns the number of dimensions in a cube, including the [Measures] dimension.
«Dimension»|«Hierarchy».Levels.Count
Returns the number of levels in a dimension or hierarchy, including the [All] level if applicable.
Count(«Set»[, ExcludeEmpty | IncludeEmpty])
Returns the number of cells in a set. This syntax allows empty cells to be excluded or included with the use of the ExcludeEmpty or IncludeEmpty flags, respectively.
«Set».Count
Returns the number of cells in a set, with empty cells included.
«Tuple».Count
Returns the number of dimensions in a tuple.
Note Empty cells are counted by default. The comparable Count function in OLE DB excludes empty cells by default.
To exclude empty cells in the count of a set, use the optional ExcludeEmpty keyword.
If Time has levels Year and Month, and the members of Year are 1994 and 1995, the following examples return 24
:
Count({Time.Month.Members})
Time.Month.Members.Count