Thread: Check Format
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Susan Susan is offline
external usenet poster
 
Posts: 1,117
Default Check Format

you could use the Not IsNumeric concept..........

If Not IsNumeric(TempZIP) Then
MsgBox "Invalid Zip code, Please Try again "
End If


if this doesn't work exactly, try searching
the newsgroup for "Not IsNumeric" for help
with this.
susan