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
Nagaraju Mogili 22Nagaraju Mogili 22 

Hi ,I have a requirement with validation rule,

I have a text field "Student Marks" which allows only numbers and fixed string.( numbers >=100 and string "AB").

I have to write a validation for this.can anyone help me out with this.

Thanks in advance. 
Varun SinghVarun Singh
Hi

Formula for validation-->

NOT(Or(Student_Marks__c='AB' ,Value(Student_Marks__c)>100))