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 does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
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,219
Messages
6,123,685
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