I am attempting to place the hyperion/Essbase parent name next to the child member using the GetHypParent() function but my code below places a 0 (meaning a succesful function?) in column K vs the parent name its self. How (or is there a way) that i can place the parent name next to the child name?
Sub Example_HypGetParent() Dim vtParent As Variant
For x = 9 To 20 ActiveSheet.Cells(x, 11) = HypGetParent(Empty, Trim(ActiveSheet.Cells(x, 4)), vtParent)
Next x
End Sub
The
HypGetParent
function returns an integer by design – it fills thevtParent
variable with the value of the parent, assuming the call was successful. So theoretically you need something more like this: