Hi!
Thanks for your quick answer.
After some hours of manipulating Excel/Palo, I managed to achieve what I wanted.
However, I still have one problem. Do you know how I can retrieve an element's specific attribute through a macro? I seem to have something wrong, but cannot figure out what :-)
|
Source code
|
1
|
=PALO.DATAC("localhost/db";"#_My Attribute Cube";"Attribute I'd like to retrieve";"element")
|
The above formula works fine. However, when trying to translate that into a macro, for example through
|
Source code
|
1
|
ActiveCell.Value = Application.Run("PALO.DATAC", "localhost/db", "#_My Attribute Cube", "Attribute I'd like to retrieve", "element")
|
I get a !#NUM error in Excel when the macro is launched.
What's wrong with this?
Thanks again!
J