I have a filed that I need to find records in a layer that have a number that should not be there. Not really sure on how to do this.
Rec field has length of 10. In the example below the first and fourth records has 0 in the 9th space (it could be a different digit) and some records will have an alph character in the 9th space, which is ok as long as it's an alph character. I would like to somehow mark the records. Essentially, I need to find which records have a digit(skip if alph character is there) on the 9th space of the records. Hopefully this makes sense.
Rec | mark |
| 12345678 0 | ok ( or 1) |
| 22345108A0 | ok ( or 0) |
| 6523148000 | Not ok ( or 0) |
| 62315010 9 | Ok ( or 1) |
| 6218921801 | Not ok ( or 0) |