Forum Discussion
Is this the normal behavior? - Puzzled by result
- 7 years ago
Hi AlB,
on the expanded version of the SalesTable (which includes the Calendar Table as you've mentioned) now you have two columns 'Date', the native one of 'Sales' plus the one coming from 'Calendar'.
Therefore on the measure:
CALCULATE(SUM(SalesTable[Amount]), ALL(SalesTable[Date]) )
the filter coming from the Slicer (on which you 're using Calendar[Date]) remains active because you're removing the filter only from the 'Date' column that is native to Sales
Hi AlB,
on the expanded version of the SalesTable (which includes the Calendar Table as you've mentioned) now you have two columns 'Date', the native one of 'Sales' plus the one coming from 'Calendar'.
Therefore on the measure:
CALCULATE(SUM(SalesTable[Amount]), ALL(SalesTable[Date]) )
the filter coming from the Slicer (on which you 're using Calendar[Date]) remains active because you're removing the filter only from the 'Date' column that is native to Sales
I see what you mean. You're right. I'll mark the post as solution when the feature works again.
Thanks