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
chinni dchinni d 

In the process of creating a new record, how you will check, whether user has entered email or not in the email field of Account object?

Dutta SouravDutta Sourav
Hi Chinni,
Make this field as required.

Warm Regards,
Sourav
 
HARI KRISHNAHARI KRISHNA
Hi Chinni,
Create a Validation rule on Account Object.If your requirement is:-- ppl must enter email before save then here is validation rule for that: ISBLANK(Email__c)  it checks Email field ,if it is empty then it will ask user to enter value in that field.Good luck.