Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a members table with a column for cell phone numbers, and I need to output members with cell phone numbers that are invalid (less/more than 10 digits).
Can anyone suggest the best way of doing this?
I thought about using mapping as an indicator of which cell numbers are valid and which aren't but I am battling with creating an IF statement for how many digits the cell number is.
Would appreciate any help!
Thanks so much
you can use the len() function to determine the size of the field
If (len(cellphone) <> 10... for example
you can use the len() function to determine the size of the field
If (len(cellphone) <> 10... for example
Hello!
Look at len()
Hello Taryn,
Use
If(Len(Phone) = 10, Phone, 'InvalidPhone')
V.