![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
If I run the following MDX query: select {[Measures].members} on AXIS(0) from [MyCube] the results don't include any calculated members. If I specify the calculated member by name, ie: select {[Measures].AveragePrice} on AXIS(0) from [MyCube] it works fine. Also, if I browse the dimensions with ADOMD, it shows the calculated members: con.ActiveConnection = "Provider=msolap; etc." Set cube = con.CubeDefs(0) Set dimn = cube.Dimensions("Measures") For Each m In dimn.Hierarchies(0).Levels(0).Members Debug.Print m.Name Next m Am I doing something wrong? If it makes a difference, I'm using ADO MD and Excel 2000. |
#3
| |||
| |||
|
|
Measures.AllMembers Thats what I needed. Thanks a lot. |
![]() |
| Thread Tools | |
| Display Modes | |
| |