Warning: Warning Error when encoding row-level formula: Syntax error. Missing ')'
Formula Output Type is set to Text.
Can someone please tell me what I am missing?
IF(
AND(
Job__c.Construction_Start_Date__c = " ",
Job__c.Construction_Milestone_Complete_Date__c = " "),
'Priority',
IF(
AND(
Job__c.Construction_Start_Date__c <> " ",
Job__c.Construction_Milestone_Complete_Date__c = " ")
'Priority'," " )
)
When you're done washing the blood off your hands, try this
IF(
AND(
ISBLANK(Job__c.Construction_Start_Date__c),
ISBLANK(Job__c.Construction_Milestone_Complete_Date__c)
),
'Priority',
IF(
AND(
NOT(ISBLANK(Job__c.Construction_Start_Date__c)),
ISBLANK(Job__c.Construction_Milestone_Complete_Date__c)
),
'Priority',
NULL) )
Hi Steve, No problem Matt, glad you got it sorted out ( and thanks for the Best Answer)
Cheers,
SteveMo
Hi Steve, Just an fyi , this Job__c.Construction_Start_Date__c = " " <== is not saying "ob__c.Construction_Start_Date__c field is blank, or null, or empty". Hi Keiji, Again here is the formula I used:
IF(
AND(
Job__c.Construction_Start_Date__c = " ",
Job__c.Construction_Milestone_Complete_Date__c = " "),
'Priority',
IF(
AND(
Job__c.Construction_Start_Date__c <> " ",
Job__c.Construction_Milestone_Complete_Date__c = " ")
'Priority'," " )
)
Hi Matt, IF(
AND(
Job__c.Construction_Start_Date__c = " ",
Job__c.Construction_Milestone_Complete_Date__c = " "),
'Priority',
IF(
AND(
Job__c.Construction_Start_Date__c <> " ",
Job__c.Construction_Milestone_Complete_Date__c = " "),
'Priority'," " )
)