Im having some trouble combining two formulas in an if statement. I have a range of 6 columns which may contain a string with a length of 7, this string always starts with a letter followed by two random numbers (the rest of the string is random letter and numbers)
Im interested in finding every 7len string that starts with a letter followed by numbers in position 2 and 3. If the criteria are met the row is marked with a 1.
What I have counts every string with a lenght of 7
=IF(AND(LEN(J2)=7,(ISERR(LEFT(J2,1)*1))),1,0)
