cubeset and cubemember functions

martingaleh

Board Regular
Joined
Jul 18, 2011
Messages
83
This worked:
=CUBEVALUE("ThisWorkbookDataModel","[Measures].[Sum of newrev]","[public dates_d].[moy].["&M$22&"]","[model].[type].&[Technology]",
CUBESET(
"ThisWorkbookDataModel",(
D24,
D25)
)
)

where d24 and d25 are cubemember functions. Pasting them in didn't work:
=CUBEVALUE("ThisWorkbookDataModel","[Measures].[Sum of newrev]","[public dates_d].[moy].["&M$22&"]","[model].[type].&[Technology]",
CUBESET(
"ThisWorkbookDataModel",(
CUBEMEMBER("ThisWorkbookDataModel","[model].[opp_type].&[gte]"),
CUBEMEMBER("ThisWorkbookDataModel","[model].[opp_type].&[cr]"))
)
)

this didn't either...
CUBEVALUE("ThisWorkbookDataModel","[Measures].[Sum of newrev]","[public dates_d].[moy].["&M$22&"]","[model].[type].&[Technology]",
"{([model].[opp_type].[Change Request]),([model].[opp_type].[GTE])}")


Is there some other syntax?
 
Last edited:

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hello

Try

=CUBEVALUE("ThisWorkbookDataModel","[model].[opp_type].[Change Request]","[model].[opp_type].[GTE]","[model].[type].&[Technology]","[public dates_d].[moy].["&M$22&"]","[Measures].[Sum of newrev]")

or . . .
in Cell D26 make a cubeset that is : =CUBESET("ThisWorkbookDataModel","{[model].[opp_type].&[gte],[model].[opp_type].&[cr]}","model_opp_types")

and then your final formula could be: =CUBEVALUE("ThisWorkbookDataModel",D26,"[model].[type].&[Technology]","[public dates_d].[moy].["&M$22&"]","[Measures].[Sum of newrev]")
 
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,698
Members
449,117
Latest member
Aaagu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top