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

Help with a Workflow Formula
I am trtying to create a workflow that updates a date field when the prior value is a Queue ID (Owner ID) and is changed.
i have been able to do it when there is a picklist value like this
ISPICKVAL(PRIORVALUE( Queue__c ), "QC Review")&& ischanged ( Queue__c )
How do I write the below referencing a lookup owner filed rather then a picklist field
PRIORVALUE(ownerid = "00G37000000heZl") && ischanged ( ownerid)
Thanks in advanced
Sean
i have been able to do it when there is a picklist value like this
ISPICKVAL(PRIORVALUE( Queue__c ), "QC Review")&& ischanged ( Queue__c )
How do I write the below referencing a lookup owner filed rather then a picklist field
PRIORVALUE(ownerid = "00G37000000heZl") && ischanged ( ownerid)
Thanks in advanced
Sean
Try below formula
AND(
ISPICKVAL(PRIORVALUE( Queue__c ), "QC Review"),
ISCHANGED( Queue__c ),
LEFT(PRIORVALUE(OwnerId),3) = '00G',
ISCHANGED(OwnerId)
)
~KR
All Answers
Try below formula
AND(
ISPICKVAL(PRIORVALUE( Queue__c ), "QC Review"),
ISCHANGED( Queue__c ),
LEFT(PRIORVALUE(OwnerId),3) = '00G',
ISCHANGED(OwnerId)
)
~KR
AND(
ISPICKVAL(PRIORVALUE( Queue__c ), "QC Review"),
ISCHANGED( Queue__c ),
LEFT(PRIORVALUE(OwnerId),3) = '00G',
ISCHANGED(OwnerId)
)
Tried to change the initial OwnerID and then replaced the picklist field properties to the topessaywriter (http://topessaywriter.org) info.