Forum Discussion
reast
Helper II
9 years agoFilter for notes on same day by same provider
As a double check, we are wanting a dashboard to show notes when the same provider wrote two notes on the same day since it could be an accidental duplicate. I don't see how I can set it up to filter...
- 9 years ago
Hi reast,
I have created a measure like this ( My Table AutrData, I added 2 more providers for tests) :
Test = IF(COUNTX(AutrData,AutrData[ Date ])> 1 ,COUNTX(AutrData,AutrData[ Date ]),BLANK()).
Then with a matrix (See image below) I have this report ( does not show the blank ones).
Hope it helps ...
Interkoubess
Solution Sage
9 years agoHi reast,
I have created a measure like this ( My Table AutrData, I added 2 more providers for tests) :
Test = IF(COUNTX(AutrData,AutrData[ Date ])> 1 ,COUNTX(AutrData,AutrData[ Date ]),BLANK()).
Then with a matrix (See image below) I have this report ( does not show the blank ones).
Hope it helps ...
reast
Helper II
9 years agoExactly what I needed. Thank you so much!!