Skip to main content
Is it possible to make a field mandatory based on a text field that starts with a number?

 

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
  1. 20 de jun. de 2016, 13:24

    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)

    )

     

     
0/9000