Hi,
The following formula Doesn't ignore date slicers on the first section of the formula when using ALLEXCEPT. Just want to know if there was a solution to this.
a) Want to ignore all other filters except Projects Filter and RC Filter.
b) date slicer filter seems to be included
Amount2 =
//NOT WORKING
CALCULATE(
SUM('DatabaseData'[Amount]),
ALLEXCEPT(
'DatabaseData',
'DatabaseData'[Project],
'DatabaseData'[RC]
),
'DatabaseData'[Type]="Outstanding Revenue"
)
+
//WORKING
CALCULATE(
SUM('DatabaseData'[Amount]),
'DatabaseData'[Type]<>" Outstanding Revenue",
ALLSELECTED('DatabaseData')
)