Skip to main content
Marie-Claire Arkoulakis (LL Global) 님이 #Formulas에 질문했습니다

I need help please!  I need 2 VR's that I am struggling with: 

1). If Product2.directrevenueposting(checkbox) = false, then Start and End date is required

2). Order can not contain a mix of Product2.directrevenueposting = true and Product2.directrevenueposting = false

 

Any guidance would be greatly appreciated!

 

Thank you!

Marie

답변 17개
  1. 2023년 5월 16일 오후 6:58

    Okay so the first Validation Rule would be on the Order Product Object

     

    AND(

    Product2.directrevenueposting = FALSE,

    OR(

    ISBLANK( StartDate ),

    ISBLANK( EndDate )

    )

    )

0/9000