UniqueMove Property
The UniqueMove property sets or returns how unique levels are treated when you move a category.
Syntax
object .UniqueMove
Applies To
Discussion
Use the UniqueMove property to avoid having to manually restructure the categories in a unique level to conform to changes in source data. A uniqueness violation can occur during category generation when you move a category from a unique level because the moved category now appears in a different context.
Set this property to True to specify that such changes are to be treated as unique moves. Measure values, even those accumulated under the old data structure, are thereafter rolled up the new path to the moved categories.
This property is available only for levels with their Unique property set to True.
Default: False
Type
Boolean
Access
Read/Write
Examples
objLocationsDim = objModel.Dimensions("Sales regions")
objLevel = objLocationsDim.DrillDowns(1).Levels("Employee") objLevel.UniqueMove
= True