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

Validation Field Not Working
Custom Object: Can
Formula: FEL_Monthly__c >0&& isnull( Monthly_Other_Specify__c )=True
I am trying to create an error message when a user enters a
currency value in the field FEL Monthly but does not enter a value in
field Monthly Other Specify. I have tried the above formula in several
ways (with no syntax errors) and it will not return the error when I
test it out. Please let me know what I need to change to make it return
the error on the object.
This should work:
AND(FEL_Monthly__c > 0, ISNULL(Monthly_Other_Specify__c))
For fields that evaluate to "true", you don't need the =True statement since it's implied already by the statement in a validation rule. You also didn't specify what type of field Monthly_Other_Specify__c is -- if it's a text field, the formula would be slightly different. You can't check for nulls in text fields -- you need to check the length instead.
AND(FEL_Monthly__c > 0, LEN(Monthly_Other_Specify__c)=0)
All Answers
This should work:
AND(FEL_Monthly__c > 0, ISNULL(Monthly_Other_Specify__c))
For fields that evaluate to "true", you don't need the =True statement since it's implied already by the statement in a validation rule. You also didn't specify what type of field Monthly_Other_Specify__c is -- if it's a text field, the formula would be slightly different. You can't check for nulls in text fields -- you need to check the length instead.
AND(FEL_Monthly__c > 0, LEN(Monthly_Other_Specify__c)=0)