Thanks very much for the response xenou!
I've been bashing at this all morning, and was venting my frustration.
I have tried creating Two Named Ranges, "PickOne" and "NoTen"
"PickOne" contains the values 0,5 and 10
"NoTen" contains the values 0 and 5
I'm sorry I can't use HTML maker from this computer due to group policies, or I would show an example of the following description:
Column "A" is Labeled "Score One" and Column "B" is Labeled "Score Two"
Column "A" and Column "B" can ONLY contain a numeric value of 0,5 or 10
If either "A" or "B" has a value of 10, then the other may NOT, i.e.,
If Cell "A2" contains a "10" THEN Cell "B2" may NOT contain a 10, but Cell "B2" can have the 0 or 5
the following code for my datavalidation is where I got the error message:
Code:
=IF(H2="",(PickOne,INDIRECT(H2)),IF(H2=10,(NoTen,INDIRECT(H2)),IF(H2=5,(PickOne,INDIRECT(H2)),IF(H2=0,(PickOne,INDIRECT(H2)),""))))
I hope that is enough to go on...