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
Taha HaiderTaha Haider 

Validation rule i want

I want the validation rule on field of "16 digits as long the last one is W"
I want W in the end.
CharuDuttCharuDutt
Hii Taha
Try Below Validation
AND(LEN(Text_Field__c)<>16,RIGHT(Name, 1)<>'w')
Please Mark It As best Answer If It Helps
Thank You!