Exclude Values from CUBEVALUE Formula

a68tbird

New Member
Joined
Nov 15, 2011
Messages
49
Office Version
  1. 365
Platform
  1. Windows
Hello -
I would like to return a sum of sales for a particular sales property, for a particular month, but exclude 2 categories from the sales total. I can't seem to get the syntax correct for this. I've tried numerous variations of this:
Excel Formula:
=CUBEVALUE(
    "ThisWorkbookDataModel",
    "[Measures].[Sum of Sales]",
    "[Sales].[Property].[foo]",
    "[Calendar].[CurrentYM].[202306]",
    "FILTER(NOT(AND([Sales].[Category].[ExcludeCategory1]),([Sales].[Category].[ExcludeCategory2])))"
)

Any suggestions?
Thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Further to this, I have managed to figure out how to exclude one value from a member expression like this:
Excel Formula:
=CUBEVALUE(
    "ThisWorkbookDataModel",
    "[Measures].[Sum of Sales]",
    "[Sales].[Property].[foo]",
    "[Calendar].[CurrentYM].[202306]",
    CUBESET("ThisWorkbookDataModel",
    "except([Sales].[Category].[All].children,{[Sales].[Category].[ExcludeCategory1]})")
)

(the CUBESET formula portion can be stored as a Named Range, so that part of the formula can be somewhat simplified by just calling the named range).

However, I still can't figure out how to include a second value from the Category column.
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,930
Members
449,479
Latest member
nana abanyin

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