You need to sign in to do that
Don't have an account?

Case Reopened Count?
Hello All!
Trying to figure out how to make a formula so that everytime a case changes from closed, to another status, that it adds 1 to the count? I cant figure this out any suggestions would be great!
Ok follow these steps.
1) Create a number field Ex Status Count and default this to 0
2) Create WFR with criteria Record is created or updated, use this formula
AND(ISCHANGED(Status),
ISPICKVAL( PRIORVALUE(Status),"Closed"),
(OR(ISPICKVAL(Status,"New"),ISPICKVAL(Status,"Assigned"),ISPICKVAL(Status,"Under Review")))))
3) Use the action field update select the field Status count and select use formula
Status_Count__c + 1
Here the field gets updated if the status is changed from closed to New or Assigned or Under Review
All Answers
Which edition of SFDC are you using? If you're on EE or UE you migght be able to do this with a Wokflow Rule and a Field Update.
I'm on EE, I tried this, but cant figure out how to only fire this so that when a case status changes from closed.
I can count the number of time it has closed and have that setup, but it would be better if I can count only the amount of times it has been re-opened.
PB
can you post your WFR Code?
I'm just using a simple statment:
If -Case Status- Equals -Closed-
It evalutes to true, then the field update ands a count.
PB
Ok follow these steps.
1) Create a number field Ex Status Count and default this to 0
2) Create WFR with criteria Record is created or updated, use this formula
AND(ISCHANGED(Status),
ISPICKVAL( PRIORVALUE(Status),"Closed"),
(OR(ISPICKVAL(Status,"New"),ISPICKVAL(Status,"Assigned"),ISPICKVAL(Status,"Under Review")))))
3) Use the action field update select the field Status count and select use formula
Status_Count__c + 1
Here the field gets updated if the status is changed from closed to New or Assigned or Under Review
Well check you out @Venu4790! You've learned well Grasshopper! ;-p
@Steve! ..It's all You :)
Thank you both for the help!!
PB
Hmmm, I keep getting an error that the ISCHANGE may not be used in this type of formula?
PB
When is your WFR set to trigger? You can only use ISCHANGED everytime the Record is Edited.
ISCHANGED
NOT(AND(ISCHANGED(Priority), ISPICKVAL(Priority, “Low”)))is a validation rule that ensures if a user changes the Priority of a case, the new priority cannot be “Low.”
Did you read my second line, probably you might be using the 1st criteria use the criteria where only record is created or edited
thank you again!
Sorry, been a long day, I need to read more!
PB