Restrict cell entry of B1 as per the value in A1

cantus19

New member
Joined
Nov 1, 2015
Messages
2
Reaction score
0
Points
0
I want to restrict value in cell B1 to Alphabets (and no numbers) if cell A1 value starts with "RA1". Could you please advise on the formula for this ?
 
Try
Code:
=IF(LEFT(A1;3)="RA1",TRUE,FALSE)
or
Code:
=IF(LEFT(A1;2)="RA",TRUE,FALSE)
 
sorry on error of formula (separator is wrong)

Code:
=IF(LEFT(A1,3)="RA1",TRUE,FALSE)
or
Code:
=IF(LEFT(A1,2)="RA",TRUE,FALSE)
 
Thanks Navic. Per the formula i am getting only true and false in B2 against i want to restrict numbers and only allow alphabets.
 
Back
Top