Forum Discussion
Anonymous
4 years agoNot applicable
working out count based on date
Hi All, I'm looking for a solution for this problem. i have a table such as below: What i want to do is count the number of items which have moved to done in the last 30 days, ba...
- Anonymous4 years ago
Used this solution in the end, as it gave me what i needed.
Done in last 30 Days = IF(AND(AND([OLD_VALUE_FORMATTED]<> "Done", [NEW_VALUE_FORMATTED]="Done"), [CREATED].[Date]>=Today()-30),1,0)
Anonymous
4 years agoNot applicable
Used this solution in the end, as it gave me what i needed.
Done in last 30 Days = IF(AND(AND([OLD_VALUE_FORMATTED]<> "Done", [NEW_VALUE_FORMATTED]="Done"), [CREATED].[Date]>=Today()-30),1,0)