View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Teethless mama Teethless mama is offline
external usenet poster
 
Posts: 3,718
Default Two types of Data Validation in a cell?

Or, the robust version:

=FIND(A1,UPPER("~YN"))1


your formula fail. If user enter both YN in a cell


Try this one:

=AND(EXACT(A1,UPPER(A1)),OR(A1="Y",A1="N"))





"T. Valko" wrote:

Try this...

=FIND(A1,"~YN")1

Or, the robust version:

=FIND(A1,UPPER("~YN"))1

--
Biff
Microsoft Excel MVP


"Lakeville" wrote in message
...
I want to ensure that the data in a cell is either a capitalized Y or a
capitalized N. I understand how to do the data validation of a list with Y
&
N. And I understand how to enforce capitalization: =EXACT(A1,UPPER(A1)).
However, I don't understand how to enforce both for the same cell.



.