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
Rachel Linder 8Rachel Linder 8 

validation rule to require a value in a picklist field except for system administrator

I need a validation rule for a picklist field (Adelphic PAS) that makes it required for all users except for the System Administrator.
Any help. This is what i have started but I think I am way off.

AND( ISPICKVAL(Programmatic_Account_Strategist_PAS__c, " "), 
$Profile.Name <> "System Administrator")
Best Answer chosen by Rachel Linder 8
Alain CabonAlain Cabon
It is perhaps just AND( ISPICKVAL(Programmatic_Account_Strategist_PAS__c, " "),  that doesn't work.

AND( $Profile.Name <> "System Administrator",
ISBLANK(TEXT( Programmatic_Account_Strategist_PAS__c)))