The LastProcessed property of the Dimension interface contains the date and time when a dimension was last processed.
| clsAggregationDimension | clsDatabaseDimension |
| clsCubeDimension | clsPartitionDimension |
Date
Read-only
The LastProcessed property for an object is undefined and will raise an error if the value of the State property is olapStateNeverProcessed.
Use the following code to determine when a dimension object was last processed:
'Assume an object (dsoDim) of ClassType clsDimension exists
If dsoDim.State <> olpaStateNeverProcessed Then
If dsoDim.LastProcessed < date Then
'Code to process the dimension
End If
End If
| About Decision Support Objects | Using Decision Support Objects |
| LastUpdated | Properties Cross-Reference |