You need to sign in to do that
Don't have an account?
Error: Field ShippingPostalCode does not exist. Check spelling.
How is this possible when I'm selecting SF's own insert field values and it is populating them?
You need to sign in to do that
Don't have an account?
Could you be more descriptive where you are using and how?
Account.ShippingPostalCode
This is the formula
AND((MailingPostalCode <> Account.ShippingPostalCode), NOT(ISBLANK( Account.Name )))
Trail: Formulas and Validations --> Create Validation Rules
Error: Field MailingPostalCode does not exist. Check spelling.
Solution: Instead of writing MailingPostalCode try writing BillingPostalCode
AND(
NOT(ISBLANK( Id )),
BillingPostalCode <> ShippingPostalCode
)
Not seeing any issue with the Syntax either. But, get this error every time I ty completing the topic "We can't find a reference to the account 'ShippingPostalCode' field in the validation rule"
To Complete the Challenge,
Instead of creating Validation Rule in Account. Create a Validation Rule in Setup->Object_Manager-> Contact.
AND
(
NOT (ISBLANK(AccountId)),
MailingPostalCode <> Account.ShippingPostalCode
)