I'm trying to work out a formula to check if a column has CIP or GEN as the first three characters, followed by 7 numerals. I have a formula to check for CA1234567.
=(LEN([Order Number])=9)+(LEFT([Order Number],2)="CA")=2
Although this does not check if there are 7 digits, just that the field is 9 characters in length.