Forum Discussion
Anonymous
2 years agoNot applicable
Count Cases based on Days between Dates
Trying to figure out the best way to do this. I want to create a measure wheere I can Distinct Count cases where the FIRST Date of Request to Recieved Date is 15 days or less, as we can request i...
- 2 years ago
Anonymous
you can try to create a new column
Column = if('Table'[request date]=CALCULATE(min('Table'[request date]),ALLEXCEPT('Table','Table'[case id]))&&'Table'[Days Difference]<=15,1,0)then you sum up the new column and you will get 2
- 2 years ago
see attached
- 2 years ago
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
lbendlin
2 years agoSuper User
see attached