Apologies for an overly simple question but:
If I want to validate an entry on a form (to a table) how do I
validate it so it has to be text. Do I have to list all the acceptable
ASCII characters or is there a built in function to do this?
Well, if you are validating the entry to a list from a table, then why do we
care if it is numbers, text or whatever? You simply limit the values entered
to the table list..and you done? (am I missing something here?).
The most easy way to do this is simply drop a combo box into the form, let
the wizard build this box. You can set the "limit to list" = yes, and then
users will not be able to enter anything else, but a value tested against
that table....
I not really sure why you going off on a tangent about text, numbers or
whatever, since in the next sentence you tell me you have list to validate
the given entry against.
if you did not have that list, then you could use a input mask to restrict
the entry to numbers, or text only, but we don't seen to need that ability
with a given table list already to validate against.