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

Validation rule question
Hi, I am trying to create a validation rule which I need to flag up an error message when the following occurs:
If field 1 = "Qualified" and field 2 "isnull"
It is probably very basi but can anyone please assist? Im used to SQL and not quite got the syntax.
Cheers,
Gareth
If field 1 = "Qualified" and field 2 "isnull"
It is probably very basi but can anyone please assist? Im used to SQL and not quite got the syntax.
Cheers,
Gareth
AND( TEXT(Status) ='Qualified' , ISBLANK( Service_required__c )
All Answers
Please try this
AND( field 1=='Qualified' , ISBLANK( field 2))
Cheers
Error: Field Status is a picklist field. Picklist fields are only supported in certain functions.
Any further assistance would be appreciated.
Thanks,
Gareth
AND( TEXT(Status) ='Qualified' , ISBLANK( Service_required__c )