Last edited by DocAElstein; 07-11-2023 at 11:40 AM.
Rick,
As you know you can shorten 2nd SUMPRODUCT(--ISNUMBER with COUNT,
COUNT(--MID(A1,{6,7,8,9},1))
Another one with less functions,
=AND(COUNT(MID(A1,{6,7,8,9},1)+0)=4,COUNT(FIND(MID (UPPER(A1),{1,2,3,4,5,10},{1,1,1,1,1,999}),"ABCDEFGHIJKLMNOPQRSTUVWXYZ"))=6)
EDIT:
Using by a tilde "~" could avoid UPPER function,
=AND(COUNT(MID(A1,{6,7,8,9},1)+0)=4,COUNT(SEARCH("~"&MID(A1,{1,2,3,4,5,10},{1,1,1,1,1,999}),"ABCDEFGHIJKLMNOPQRSTUVWXYZ"))=6)
Last edited by DocAElstein; 07-11-2023 at 11:41 AM.
Bookmarks