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

workflow not set
Manager forcast is picklist field
stage is picklist field
if recordtypeid is 0120g000000YTs1 or 012700000001YJj and manager forcast is omitted and if stage is other than 0.0 Engage then i want manager forcast is upsert.
the below code in workflow is not working
(( RecordTypeId == '0120g000000YTs1' ) || (RecordTypeId == '012700000001YJj' )) && (ISPICKVAL( Manager_Forecast__c , 'Omitted')) && ( Not (ISPICKVAL( StageName , '0.0 Engage')))
stage is picklist field
if recordtypeid is 0120g000000YTs1 or 012700000001YJj and manager forcast is omitted and if stage is other than 0.0 Engage then i want manager forcast is upsert.
the below code in workflow is not working
(( RecordTypeId == '0120g000000YTs1' ) || (RecordTypeId == '012700000001YJj' )) && (ISPICKVAL( Manager_Forecast__c , 'Omitted')) && ( Not (ISPICKVAL( StageName , '0.0 Engage')))
Try returning true or false using If statement in your formula like below based on which the action of updating the records may happen. Hope above information helps. Please mark as Best Answer so that it can help others in future.
Thanks.