Skip to main content
Peter Cowen (selenity) 님이 #Data Management에 질문했습니다
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개
  1. 2016년 6월 20일 오후 1: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