Data validation with Wildcards


Posted by Nik White on December 19, 2001 1:35 AM

Is it possible to specify wildcards in the standard Excel data validation dialog i.e. I want a user to enter data in the format ***-***-*** where * is any alphanumeric character and the hyphen is well, a hyphen!?!

Posted by Mark W. on December 19, 2001 11:35 AM

Use a "Custom" validation criteria with the
formula, =ISNUMBER(MATCH("???-???-???",A1,0)),
where the contents of cell A1 is that you want
to validate.



Posted by Nik White on January 04, 2002 5:34 AM

Works a treat - thanx