I would like to make the Parent Account field (standard lookup field) mandatory if the Industry field (custom picklist field) is equal to "Global In-house Center (GIC)".
I've created the following validation rule on the Account level:
AND(
Ispickval( Industry ,"Global In-house Center (GIC)"),
OR(
Isblank( ParentId )))
But nothing happens, I don't get an error if or if I don't add GIC as the industry.
Thanks,
Boshra
4 件の回答
Hi Boshra,
You can try below formula:
AND(
Ispickval( Industry ,"Global In-house Center (GIC)"),
IsBlank(ParentId)
)