You need to sign in to do that
Don't have an account?
Validation Rule to check
This validation rule makes sure that if either the checkbox Non_Standard__c is checked or the text field Non_Standard_Terms_Conditions__c is populated, the user has to fill in the Non_Standard_Terms__c multi-select pick list.
This is not working:
AND (
OR(Non_Standard__c = TRUE, NOT (ISBLANK(Non_Standard_Terms_Conditions__c ))),
ISBLANK( Non_Standard_Terms__c )
)
Could you please help me?
Thanks a lot in advance.
This is not working:
AND (
OR(Non_Standard__c = TRUE, NOT (ISBLANK(Non_Standard_Terms_Conditions__c ))),
ISBLANK( Non_Standard_Terms__c )
)
Could you please help me?
Thanks a lot in advance.
AND(OR( Checkbox__c =true , NOT(ISBLANK(textbox__c ))),ISBLANK( Multiselect__c ))
What am I missing? I think the following info is not relevant, but I am sharing it, just in case:
Multiselect__c is a required field, but dependent on Checkbox__c.
There is a WF rule which makes sure that if textbox__c is populated, Checkbox__c gets checked.
Thanks,
Vatsal
IF(AND(Non_Standard__c = FALSE, ISBLANK(Non_Standard_Terms_Conditions__c )), FALSE,
IF(OR(Non_Standard__c = TRUE ,NOT(ISBLANK(Non_Standard_Terms_Conditions__c ))) , IF(ISBLANK( Non_Standard_Terms__c ),true,false),false )
)
I hope someone can help! The problem is that I am getting the error even though both fields are empty.