For example, a Loan Product record has Verification Requirements
- Valid Proof of ID
- Valid Bank Account
When an Appication has Valid Proof of ID and Valid Bank Account as it's values, I want the formula field "All Verification Requirements Met" marked as TRUE
Any advice that doens't involve a bunch of nested IF statements?
4 respostas
Hi Katie,
It doesn't sound to me like you want to check that they are equal, rather that picklist 2 contains at least all the items in picklist 1. To do that, you need a series of IFs to check each single value. For example, a checkbox formula like this:
AND(
OR(NOT(INCLUDES(Picklist1, "Value 1")), INCLUDES(Picklist2, "Value 1")),
OR(NOT(INCLUDES(Picklist1, "Value 2")), INCLUDES(Picklist2, "Value 2")),
OR(NOT(INCLUDES(Picklist1, "Value 3")), INCLUDES(Picklist2, "Value 3"))
)