I'd like to make products required on opportunites and when I activiate this formula, I can not convert leads to ops. Also if I include NOT(ISNEW)), the rule does not prompt me at any stage to add Products. Any ideas? Appreciate the help.
AND(
ISPICKVAL(StageName,"1st Meeting"),
ISPICKVAL(StageName,"2nd Meeting"),
ISPICKVAL(StageName,"Proposal"),
ISPICKVAL(StageName,"Negotiation"),
ISPICKVAL(StageName,"Legal"),
HasOpportunityLineItem = FALSE
)
3 risposte
Hi Matthew,
You may try with below formula:AND(
OR(
ISPICKVAL(StageName,"1st Meeting"),
ISPICKVAL(StageName,"2nd Meeting"),
ISPICKVAL(StageName,"Proposal"),
ISPICKVAL(StageName,"Negotiation"),ISPICKVAL(StageName,"Legal")
),
HasOpportunityLineItem = FALSE
)