Is there a way to make standard address fields on the account object required?
29 respostas
What is Account Type field API name and data type ? if it is standard you can use the following VR
AND
(
CASE(Type, 'A', 1, 'B', 1, 'C', 1, 0),
OR
(
ISNEW(),
AND
(
NOT(ISNEW()),
DATEVALUE(CreatedDate) >= DATE(2022,8,17)
)
),
OR
(
ISBLANK(BillingStreet),
ISBLANK(BillingPostalCode)
)
)