Sorry for looking like I had abandoned you, but I had gone to sleep for the night, but I am back now. Okay, since you have now told us how you want to use the test, I am going to turn the code I posted into a UDF (user defined function). Once set up, you will be able to use it in the workbook just like any of the built-in Excel functions. First, the code...
Code:
Function TestPattern(S As String) As Boolean
Dim A As String, YourCellValue As String
A = "[A-Za-z]"
TestPattern = S Like A & "##" & A & A & "##" & A & A & "##" & A & "##" & "[0-9Xx]"
End Function
To install this code, press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that opened up. That's it, you are done. Now go back to your worksheet and put this formula in cell B1...
and it will report TRUE or FALSE for the pattern in the referenced cell. This formula can be copied down or across as needed. Also, this function can be embedded within other Excel function calls if need be; for example...
Code:
=IF(A2="","",IF(TestPattern(A2),"Matched Pattern","Mismatched Pattern"))