• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help With EssVZoomIn VBA

keithfender

New Member
Hello,

I am trying to zoom in via Essbase using VBA on some customer data to the bottom level, and so far I can only get the "Zoom Failed" message.

I have a dummy file to share to help show you guys my sheet, and my VBA code is below.



Code:
Declare Function EssVZoomIn Lib "ESSEXCLN.XLL" (ByVal sheetName As Variant, ByVal range As Variant, ByVal selection As Variant, ByVal level As Variant, ByVal across As Variant) As Long

Public Sub ChannelZoomIn()
'
' ChannelZoomIn Macro
'
    X = EssVZoomIn("[DummyZoomFile.xls]Drilldown", range("H9:J26"), range("D9:D26"), 3, False)
    If X = 0 Then
   MsgBox ("Zoom successful.")
    Else
   MsgBox ("Zoom failed.")
    End If
End Sub
 

Attachments

  • DummyZoomFile.zip
    219.8 KB · Views: 7
Hi, keithfender!

As a new user you might want to (I'd say should and must) read this:
http://chandoo.org/forum/forums/new-users-please-start-here.14/

And regarding your issue, I never heard about neither Essbase nor EssVZoomIn but that isn't important. What matters is that if you're using a non-standard Excel feature, add-in or product, then you should post the link where it's available for free download and trial; it'd be very useful for those who read this and might be able to help you, relieving the contributor of having to investigate it by himself, if necessary. Thank you.

Despite of this and being apparently a supported add-in, have you yet tried asking to its customer support service?

Regards!
 
Thank you both for the quick responses!

Essbase is not a free add-in or product. It's a database management system, which many companies use with their Financial/Planning departments. Narayank991, thank you for the links. I found those when I was doing my own initial Google searches. What's surprising to me is that an Essbase specific help forum is a difficult thing to find! I posted here in case any other readers/posters of Chandoo also use Essbase and might be able to help me with my VBA. This website has been an excellent resource over the years, and I know it's a stab in the dark, but I am hoping another Essbase Excel Add-In user more knowledgeable than myself is on these forums.

Thanks in advance,

Keith
 
Back
Top