Data provider types: Essbase
HypGetDatabaseNote() retrieves Essbase database notes.
HypGetDatabaseNote (vtSheetName, vtDBNote)
ByVal vtSheetName As Variant
ByRef vtDBNote As Variant
vtSheetName: Input parameter; the name of worksheet on which to run the function. If vtSheetName is Null or Empty, the active worksheet is used.
vtDBNote: Output parameter; the database note to be retrieved.
Public Declare Function HypGetDatabaseNote Lib "HsAddin" (ByVal vtSheetName As Variant, ByRef vtDBNote As Variant) As Long Sub Example_HypGetDatabaseNote() sts = HypGetDatabaseNote(Empty, DBNote) MsgBox DBNote End Sub