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 réponses
Okay so the first Validation Rule would be on the Order Product Object
AND(
Product2.directrevenueposting = FALSE,
OR(
ISBLANK( StartDate ),
ISBLANK( EndDate )
)
)