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
Anshuman ParhiAnshuman Parhi 

admin requirement problem

make a field as mandatory on the creation of record and the validation rule is only for IT Staff profile user.

any solution.
SwethaSwetha (Salesforce Developers) 
Hi Anshuman,
Try the below formula in the validation rule 
AND(
   $Profile.Name = "IT Staff",  
   ISBLANK(Your_field_name) 
)
If this information helps, please mark the answer as best. Thank you