Forum Discussion
Nevos
6 years agoFrequent Visitor
Inconsistant filter results
I'm getting some really odd behaviour when filtering tables using a measure. I have two tables (one a copy of the other) and when i remove two collumns from the second table my results change. backg...
v-alq-msft
Community Support
6 years agoHi, Nevos
There are two ways. One way is to make the fields in the visual 'Don't summarize'. Another way is to create a new measure as follows.
TotalInbound = CALCULATE(SUM(RealTimeData[InboundCalls]),FILTER('RealTimeData','RealTimeData'[LastUpdated] = [LatestDate]))
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Nevos6 years agoFrequent Visitor
Hi Allan and thanks for the response. Yes removing the field to 'Don't summerise' gives the desired result but it doesn't explain why? Both tables have the field set to SUM and are referencing the same data, measures and fields. So why two different results?
I've tried your suggestion of the new measure but it doesn't give any data at all 😞