Thanks for the reply. Initially I thought that what you had was what I wanted, but looking again I don't think so.
The data I have is not a single row. I have multiple rows and I am trying to check if any single row in the set of rows I am evaluating has a mix of alpha and numeric values.
Example #1:
0, 1, 2
a, b, c
This example should return false because neither row has a mix of alpha and numerics. The fact that row #1 is all numeric and #2 is all alpha is fine.
Example #2:
3, 4, d
e, f, g
This example should return true because the first row has a mix of alpha and numeric. Row #2 is all alpha which is good, but row #1 isn't so overall the two rows fail.
I was able to add a true/false formula to each row and then one cell for the whole block that checks if any row returns true and if so the whole thing is true. I also created a VBA option. But I would like to do this all with a formula in one cell if possible.
Thanks for the help.