Hi there,
I have created a measure that calculates the unique count of events using the following measure:
Unique_count = CALCULATE( DISTINCTCOUNT(‘Table’[Event_date]), FILTER(‘Table’,‘Table’[Notified_event]=“TRUE” ||
(‘Table’[Event_type]=“3” && ‘Table’[Status]=“1”) ))
I have also applied Table['Status]=“1” as a filter at the page level. When I ran the prog, the answer the above measure gave was 780. However, when I included the Status value “2” (along with 1) as a filter at the page level, the above measure gave a different value (i.e. 970).
As you can see in the measure that I only considering the ‘Status’ value equal to 1. I do not consider other values of the status column. I was expecting that inclusion of status value 2 in the filter would not change the count of the measure. it would remain the same. Does the page level filter overwrites the condition of measure or am I missing something here?
Sample 4.pbix (69.3 KB)