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

Rule on StageName
I have a workflow that kicks of when the stage changes to 'Closed Won' The issue is that the workflow doesn't get kicked of if a brand new opportunity gets created and immediated set to 'Closed Won' I'm trying to check to see if the StageName is ISBLANK, ISNULL, etc. But can't get the right combination. When the stage gets changed on when it was set to something works. Evaluation Criteria is set to 'Evaluate the rule when a record is created, and every time it’s edited' Here is what I've tried. Thanks for any help.
OR( AND( NOT(ISPICKVAL(PRIORVALUE(StageName ), "Closed Won")), ISPICKVAL( StageName , "Closed Won") ), AND( ISNULL(PRIORVALUE(StageName)), ISPICKVAL( StageName , "Closed Won") ) )
OR( AND( NOT(ISPICKVAL(PRIORVALUE(StageName ), "Closed Won")), ISPICKVAL( StageName , "Closed Won") ), AND( ISBLANK(PRIORVALUE(StageName)), ISPICKVAL( StageName , "Closed Won") ) )
OR( AND( NOT(ISPICKVAL(PRIORVALUE(StageName ), "Closed Won")), ISPICKVAL( StageName , "Closed Won") ), AND( ISPICKVAL(PRIORVALUE(StageName ), ""), ISPICKVAL( StageName , "Closed Won") ) )
For anyone interested, ISNEW() is what I was looking for.