Validation numeric and text

  • Thread starter Thread starter BNT1 via OfficeKB.com
  • Start date Start date
B

BNT1 via OfficeKB.com

Hi

Is it possible to validate a cell that will only except numeric values, and
only the letter "H"? My idea, is that when the guy is on holiday, "H" can be
entered instead of the numeric value "0"

Thanks in advance

Regards
 
So you want the cell to accept *either* a number or the letter H?

Try this:

Data>Validation
Allow>Custom
Formula: =OR(ISNUMBER(A1),A1="H")
 
Back
Top