Input mask for names ie:Last,First,Middle,

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like a mask or code so I may make/create in my form a field for
names. I want to input them as follows: DOE,JOHN,MICHAEL,. I would like
for it to require the commas. Any help would be nice.
 
My recommendation would be to use separate fields for the different parts of
the name, rather than storing the entire name in a single field.
 
I would like a mask or code so I may make/create in my form a field for
names. I want to input them as follows: DOE,JOHN,MICHAEL,. I would like
for it to require the commas. Any help would be nice.

I doubt that anyone knowledgeable here is going to help you do
something that goes against the rules of Access.

Create 3 separate fields.
One for LastName
One for FirstName
One for Middle name.

It is very easy to put them together in a report, query, or form, i.e.
= FirstName & (" " + MiddleName) & " " & LastName

It is quite a hassle to separate them from a combined field,
especially if some records do not contain all 3 names.
 
That is what I was going to do, but the old form that we were using has it
set up this way. So I was tring to keep it the same.
 
Thanks, but I must be doing somthing wrong. Or I don't really understand
where I put = FirstName & (" " + MiddleName) & " " & LastName code that you
gave me. I have three seprate fields in a table for last, first, middle
name. I wanted the input mask for form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Input masks 4
Input masks 1
Remove input mask format 4
input mask - capitalize first letter? 7
Input Mask - Date and Time 7
General Date Input Mask 1
Input Mask 1
Extending Input Mask 4

Back
Top