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
CRMGeneralistCRMGeneralist 

Validation Rule for Description for Certain Record Type - Help Please

:smileyvery-happy:
 
Hello All,
I would like to limit the amount of characters it allows in the Description Field that returns a warning if exceeding 255 characters, for a certain Record Type.
Can this be done, please help
NPMNPM

Something like this should work, (insert your record type ID)

Code:
AND(LEN( Description ) >255 ,RecordTypeId = "nnnnnnnnnnnnnnnnn")


 

CRMGeneralistCRMGeneralist
THANK YOU!