
Here is a snippet of code to place in a VBA script to retrieve data from Hyperion Essbase. If you use the code, I’d love to hear your comments on how it worked for you and how you’re incorporating Essbase data into your Excel analysis.
Sub Macro1()
Application.Goto Reference:=”retrieve”
Application.Run (“EssMenuRetrieve”)
Sheets(“parameters”).Select
Range(“a1″).SelectEnd Sub
Here is another presentation of the macro with the added connect prompt;
Sub Macro1()
Application.Run (“essmenuconnect”)
Sheets(“CM”).Select
Range(“A1:Z200″).Select
Application.Run (“EssMenuRetrieve”)End Sub






{ 1 comment… read it below or add one }
This works great! Is there a way to expand the macro to include more than one sheet in the workbook to automatically retireve – without naming each individual sheet…
You must log in to post a comment.