Example:
Text box 1 : 123456 A
Text box 2 : 123456
I need a rule to say if box 1 starts with a number fill in box 2 before saving
5 respostas
Sure just add that line in like below
AND(
RecordType.Name = "Your Record Type Name",
ISNUMBER(LEFT(Text_Box_1__c, 1)),
ISBLANK(Text_Box_2__c)
)