CONTAINS(TEXT(PRIORVALUE(Owner:Queue.QueueName)), 'Queue')
recieving:
Error: Function PRIORVALUE may not be used in this type of formula
5 个回答
++Deepak
User IDs start with 005 and Queues start with 00G.I would also consider adding a line to ensure the new Owner is a User:
AND(
LEFT(PRIORVALUE(OwnerId),3)='00G',
LEFT(OwnerId,3)='005')
Doug