AND(
RecordType.Name ='Ordering',
ISPICKVAL(Status__c,'Customer'),
NOT(ISPICKVAL (Years__c,"0")))
The last piece of the rule is the problem for me - I want it to say that
Is not a picklist value of 0 or blank -
Any help advice on how to proceed please?
Thank you
8 answers
Hi James,
I think you may be looking for something like this:AND(
RecordType.Name ='Ordering',
ISPICKVAL(Status__c,'Customer'),
OR (
NOT(ISPICKVAL (Years__c,"0")),
ISBLANK(TEXT(Years__c))
)
)