Function CheckAtoZ(chr1) As BooleanCheckAtoZ = TrueIf ((Asc(chr1) < 65) Or (Asc(chr1) > 90)) ThenCheckAtoZ = FalseEnd IfEnd Function
Login to post response