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

workflow piclist val
if the recordtype id is 0120g000000YTs1AAG or recordtype id is 012700000001YJjAAM and manager forcast is omitted and stage is other than 0.0 is the condition
how to write workflow
the below shows syntax error
(( RecordTypeId == '0120g000000YTs1AAG' ) || (RecordTypeId == ‘012700000001YJjAAM’ ))&& (ISPICKVAL( Manager_Forecast__c , 'Omitted') &&( Not ISPICKVAL( StageName , '0.0 Engage')))
how to write workflow
the below shows syntax error
(( RecordTypeId == '0120g000000YTs1AAG' ) || (RecordTypeId == ‘012700000001YJjAAM’ ))&& (ISPICKVAL( Manager_Forecast__c , 'Omitted') &&( Not ISPICKVAL( StageName , '0.0 Engage')))
Thanks,
Please remove and again add the single quotes in second record type condition... It's not the actual single quote...
(( RecordTypeId == '0120g000000YTs1AAG' ) || (RecordTypeId == '012700000001YJjAAM' ))
Thanks,
Maharajan.C