Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

DAX ISINSCOPE statement

Hi Team I am going to use the new DAX function ISINSCOPE, but is not available when connection type is LIVE (SSAS tabular) When will this be available ?
  • Anonymous's avatar
    Anonymous
    7 years ago

    Hi Maggie

    I have found a workaround by using ISFILTERED which seems to work.

    The issue was to hide blank members in ragged heirachy.

    This peace of DAX seem to work:

    Amount period budg:= SWITCH(TRUE(); AND(ISFILTERED(Kontoheiraki[Level3]);ISBLANK(VALUES(Kontoheiraki[Level3]))); BLANK(); BudgetTransaction[Amount period Budg_])