Forum Discussion
kfrancis
8 years agoRegular Visitor
Ignore page level filter in Measure
I have tried all the solutions from other posts but must be missing something because cannot get this to work. I have a measure to total planned production quantity for the week but I add a page ...
- 8 years ago
Hi kfrancis,
Modify your dax like this and check if it can work.
Result = CALCULATE(SUM(FactSales[FactoryFrames]),ALL(DimShiftDate), FILTER(ALL(DimProductionDateFS),DimProductionDateFS[Date] > TODAY() - WEEKDAY(TODAY())), FILTER(ALL(DimProductionDateFS),DimProductionDateFS[Date] < TODAY() + 7 -WEEKDAY(TODAY())))Regards,
Jimmy Tao
v-yuta-msft
8 years agoCommunity Support
Hi kfrancis,
Modify your dax like this and check if it can work.
Result = CALCULATE(SUM(FactSales[FactoryFrames]),ALL(DimShiftDate),
FILTER(ALL(DimProductionDateFS),DimProductionDateFS[Date] > TODAY() - WEEKDAY(TODAY())),
FILTER(ALL(DimProductionDateFS),DimProductionDateFS[Date] < TODAY() + 7 -WEEKDAY(TODAY())))
Regards,
Jimmy Tao
- kfrancis8 years agoRegular Visitor
Worked a treat, thank Jimmy