Multiple Validation Criteria

RDC100

New Member
Joined
Sep 16, 2011
Messages
2
Good Morning,

Using Excel 2000 I am trying to create a register to aid configuration management.

Column B will contain unique IDs, alphanumeric and four characters long.

I wish to restrict the input format to unique entries only, four characters in length and also upper-case if possible.

I think I have found the appropriate formulas but have no idea how to use multiple validation criteria together (fairly inexperienced with Excel).

I've got as far as preventing duplicate entries using 'custom' data validation:

datavalidation.jpg


Is there a way to add additional validation criteria?

I.e. =LEN(B5)<=4 ?

Many thanks,

Rob.
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi & welcome to the Board!

You can try this as the validation criteria:

Code:
=AND(COUNTIF($B$1:B1,B1)=1,LEN(B1)=4)
If you also want to check for alphanumeric characters, I think you'll need to use VBA.
 
Upvote 0

Forum statistics

Threads
1,224,534
Messages
6,179,391
Members
452,909
Latest member
VickiS

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top