Dennis,
The reason is that Data Validation reacts differently if there are blank
cells in a named range. If there are going to be blank cells at
the end of the range, use a dynamic formula to name the range, and you'll
avoid the problem.
This is the formula you can use to define lblAgSSNA1 if D1 and D2 have data
in them
=OFFSET(Sheet3!$D$3,0,0,COUNTA(Sheet3!$D:$D),1)
or this if they are empty
=OFFSET(Sheet3!$D$3,0,0,COUNTA(Sheet3!$D:$D)-2,1)
The other option is to use this formula in the Data Validation itself, it is
probably easier
=COUNTIF(INDIRECT("lblAgSSNAI"),D3)=1
--
HTH
Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
Dennis said:
Bob, I was a little premature, It does'nt work! In detail; I have a range
D3

65536 named lblAgSSNAI. I would like to open Data/Form, and enter
information on a employee, I have a lot of people come and go, so in order
to keep from entering the same person twice I thought I could stop an entire
entry by makeing the SSN a non-duplicate entry. The formula you gave me
stops me from duplicating the entry in D3, but not the rest (D4

65536).
Dennis