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

Validation Rules requiring two fields to match, if another field is blank
Good Morning, All,
It is my first day back from vacation, but apparently my Salesforce knowledge is apparently still on vacation.
I am trying to create a simple (I thought) validation rule that require the standard "Name" field and the custom field "Corporate Name" match exactly, but only if the standard field "Parent Account Name" is blank.
I came up with:
AND(
ISNULL( Parent.Name),
(Name <> Corporate_Name__c ))
That did not work.
What am I missing?
Thanks in advance!
or if you're not into the whole brevity thing man...
All Answers
or if you're not into the whole brevity thing man...
Thank you, thank you, thank you!!!
Worked like a charm!
The Dude abides...