Skip to main content

Is there a way to make standard address fields on the account object required?

29 respostas
  1. 17 de ago. de 2022, 15:26

    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)

    )

    )

0/9000