DAX: Default Member

verscev

New Member
Joined
May 10, 2017
Messages
1
All,


We have 3 different kinds of M2 calculations: Bruto, Netto and SuperNetto.

To make the calculation intelligent, we made one M2 calculation which uses the Netto M2 as a default.
In parallel we have a member (Calculation Type) which contain all the M2 kinds (Bruto, Netto and SuperNetto).


This works great when the Calculation Type is not used, even the totals are shown perfectly!


When I do select the Calculation Type, it still shows the correct values, except for the Totals/Grand Totals. Within this context, no Calculation Type is active, and therefore, it falls in my default loop (=Netto).


Instead of the default calculation, I would like to show BLANK(), because a summation of Netto, Bruto and SuperNetto does not mean anything.


Is there a way that I can achieve this?


This is my DAX formula:

M2 (Ordered):=
VAR DefaultMeasureType =
CALCULATE (
VALUES ( 'Measure Type'[Calculation Type] );
'Measure Type'[Default] = "X"
)
RETURN
IF (
HASONEVALUE ( 'Measure Type'[Calculation Type] );
SWITCH (
VALUES ( 'Measure Type'[Calculation Type] );
"Bruto"; SUM ( 'Orders'[_BrutoM2] );
"Netto"; SUM ( 'Orders'[_NettoM2] );
"SuperNetto"; SUM ( 'Orders'[_SuperNettoM2] )
);
IF (
NOT ( ISFILTERED ( 'Measure Type'[Calculation Type] ) );
SWITCH (
DefaultMeasureType;
"Bruto"; SUM ( 'Orders'[_BrutoM2] );
"Netto"; SUM ( 'Orders'[_NettoM2] );
"SuperNetto"; SUM ( 'Orders'[_SuperNettoM2] )
);
BLANK ()
)
)


Kind regards,
Evi Verschueren
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Forum statistics

Threads
1,213,582
Messages
6,114,468
Members
448,574
Latest member
bestresearch

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