You need to sign in to do that
Don't have an account?
ramk
Validation Rule
How to create a valiation rule:: i am new to sfdc
If the field “A” is populated then the field “B” must be blank OR if “B” is populated then “A” must be blank. Error message should display below the "Attn" attribute; error message should read:"Only A or B may be filled in, but not both"
AND(NOT(ISBLANK(A)),NOT(ISBLANK(B)))
You could also do somethinf like: