function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Lukesh KarmoreLukesh Karmore 

I am creating validation rule "OR( ISBLANK(Email),ISBLANK(Phone) , ISNEW() )"

I am creating validation rule "OR( ISBLANK(Email),ISBLANK(Phone) , ISNEW() )" I have to show the error below each field ,it is  possible to show error below each field email, phone.
or  need to create two diff  validation rule  on email and phone .
Thank You
CharuDuttCharuDutt
Hii Lukesh Karmore
Try the Following code. 
If Both the Field Is Blank
AND( ISBLANK( Email ) , ISBLANK(  Phone  ))

If any One of the Field Is Blank
OR( ISBLANK( Email  ) , ISBLANK(  Phone  ))

Please Mark It As Best Answer If it Helps.
Thank You.

 
Lukesh KarmoreLukesh Karmore
CharuDutt,
Please read the question carefully
CharuDuttCharuDutt
Hii Lukesh Karmore
if you want to display error on each field then you have to make two diff validation rule.and select the field on which  you want ot display the error

Please Mark It As Best Answer If it Helps