Issue with HypRetrieve
Hi,
I have an excel worksheet that needs to connect to an Hyperion Planning application and refresh the data. I have tried to use both HypRetrieve and HypRetrieveRange. It doesn't refresh the sheet and gives me an error code 1000.
Sub Refresh_Hyperion_Data_Sheet()Dim UN As StringDim PW As StringSheets("Input_Data").Activatey = HypMenuVSubmitData()x = HypDisconnect("Input_Data", True) Sheets("Hyperion_Data").Activatex = HypUIConnect("Hyperion_Data", "admin", "hyperion", "https://hyperionprod/HyperionPlanning/SmartView|hyperionprod|APPSCARD|DBSCARD")x = HypRetrieveRange("Hyperion_Data", Range("A1:V1000"), Null) MsgBox xx = HypDisconnect("Hyperion_Data", True)Sheets("Scorecard").ActivateEnd Sub
Regards,
RR.