Re: From text box to field
- From: fredg <fgutkind@xxxxxxxxxxxxxxx>
- Date: Mon, 27 Feb 2006 22:04:23 -0800
On 27 Feb 2006 21:55:46 -0800, Don wrote:
Hi,
This seems a simple question, but I'm lost for the answer. Say, I
have two text boxes in a form: one for FirstName, one for LastName. I
want to combine them (which I can do OK) and enter the result into a
field called Name in a table. How do I do this?
Sorry to be so dumb. Many thanks,
Don
You don't! There is no need to.
So far you have correctly entered and saved your data.
Whenever you need to show the full name, simply concatenate the two
names, in a report or on a form, using an unbound control:
=[FirstName] & " " & [LastName]
Or in a query:
FullName:[FirstName] & " " & [LastName]
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
.
- References:
- From text box to field
- From: Don
- From text box to field
- Prev by Date: From text box to field
- Next by Date: get MSDASC.DataLinks COM Object used CreateObject function in VB or PB
- Previous by thread: From text box to field
- Next by thread: get MSDASC.DataLinks COM Object used CreateObject function in VB or PB
- Index(es):
Relevant Pages
|