Forum Discussion
AlexWilkinson
8 years agoQrew Assistant Captain
Also, you may want to use a more elaborate check-box formula to handle entries containing non-digit characters and extraneous spaces. Something like the following, which handles up to five instances of a period, dash, parenthesis, or space entered as a separator between digits:
var text p=ToText(Trim([Phone Number]));
var text partOne=Part($p,1,".-)( ");
var text partTwo=Part($p,2,".-)( ");
var text partThree=Part($p,3,".-)( ");
var text partFour=Part($p,4,".-)( ");
var text partFive=Part($p,5,".-)( ");
Length($partOne & $partTwo & $partThree & $partFour & $partFive) = 10
var text p=ToText(Trim([Phone Number]));
var text partOne=Part($p,1,".-)( ");
var text partTwo=Part($p,2,".-)( ");
var text partThree=Part($p,3,".-)( ");
var text partFour=Part($p,4,".-)( ");
var text partFive=Part($p,5,".-)( ");
Length($partOne & $partTwo & $partThree & $partFour & $partFive) = 10
- RajHelaiya8 years agoQrew CaptainCan you please elaborate on the execution of the formula? As to, which formula field to use? I tried using the formula check box field and create the abort save option but it did not work. The formula field does not check when a 10 digit phone number is entered.
- EvanMartinez8 years agoModeratorHi Raj,
That formula Alex post does a more in depth look at the Length portion in order to do the Counting. It still needs the If statement that does the check for true and false. So something like
var text p=ToText(Trim([Phone Number]));
var text partOne=Part($p,1,".-)( ");
var text partTwo=Part($p,2,".-)( ");
var text partThree=Part($p,3,".-)( ");
var text partFour=Part($p,4,".-)( ");
var text partFive=Part($p,5,".-)( ");
If(Length($partOne & $partTwo & $partThree & $partFour & $partFive) = 10, True, False)
I believe should not just check the length of the number but check or uncheck that box for the form rule. - RajHelaiya8 years agoQrew CaptainThis definitely worked. Thank you