Notes
GIVEN a Lead is being created or edited,
WHEN the Email field is blank, and the Phone field is also blank,
THEN an error message should be displayed, stating "Either Email or Phone are required."
AND(
ISBLANK(Email),
ISBLANK(Phone),
OR(
ISNEW(),
ISCHANGED(Email),
ISCHANGED(Phone)
)
)