Forum Discussion
reast
9 years agoHelper II
Filter 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
9 years agoSolution Sage
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 ...
reast
9 years agoHelper II
Exactly what I needed. Thank you so much!!