Forum Discussion
Apply filter but not exclude all
- Anonymous2 years ago
Hi PBI5851 ,
According to your description, here are my steps you can follow as a solution.
(1) My test data is the same as yours.
(2) We can create measures.
CountofContact = IF(MAX('Table'[ContactDate]) <> BLANK(),1,0)Measure = IF(COUNTROWS(ALL('Table'[PersonID]))=COUNTROWS(VALUES('Table'[PersonID])),COUNTROWS(VALUES('Table'[PersonID])),SUMX(ALLSELECTED('Table'),[CountofContact]))(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I assume you are using Table?
PersonID | Name | ContactDate
with count on the contactDate?
If so, you can just right click on Name or PersonID (either should work) and select "Display items with no data".
- PBI58512 years ago
Helper V
vhsn
Will try that, but the other issue which i forgot to mention is i have a card that is supposed to read 11 members (as in total count of members) and then change when slicer of date is moved. So opening the report, and date slicer not being "touched" (indicating full range), the card should be 11 and then 4 if date slicer range is selected from 1/1/23 - 3/1/23
Is that even possible ?