473,386 Members | 1,798 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Combining Field Values

I need to combine fields values: FirstName and Last Name to Full Name in
the same table. I like to put the value on the full name after completing
entry for the full name. Thanks for the help.

WW
Nov 12 '05 #1
2 2108
On Thu, 22 Apr 2004 18:34:16 GMT, epascual wrote:
I need to combine fields values: FirstName and Last Name to Full Name in
the same table. I like to put the value on the full name after completing
entry for the full name. Thanks for the help.

WW


Actually, you don't need to combine them and store it in the same
table.

Right now you have your data properly stored in 2 fields, [FirstName]
and [LastName].
That's all you need.

Whenever you want to show the 2 names together, in a query, form, or
report, simply combine them.
In a form or in a report, as an unbound control's control source,
write:
=[FirstName] & " " & [LastName]

In a query,
FullName:[FirstName] & " " & [LastName]

--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
Nov 12 '05 #2
thanks fred, however, what i wrote is just an example, i need to do it on
field extracted from other fields (some in parts and other whole field
value), tried to do it using default value, but did not work. thanks for
the tip.

"fredg" <fg******@example.invalid> wrote in message
news:f5****************************@40tude.net...
On Thu, 22 Apr 2004 18:34:16 GMT, epascual wrote:
I need to combine fields values: FirstName and Last Name to Full Name in the same table. I like to put the value on the full name after completing entry for the full name. Thanks for the help.

WW


Actually, you don't need to combine them and store it in the same
table.

Right now you have your data properly stored in 2 fields, [FirstName]
and [LastName].
That's all you need.

Whenever you want to show the 2 names together, in a query, form, or
report, simply combine them.
In a form or in a report, as an unbound control's control source,
write:
=[FirstName] & " " & [LastName]

In a query,
FullName:[FirstName] & " " & [LastName]

--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.

Nov 12 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: perplexed | last post by:
Is there a way to combine the values of multiple form items such as two textboxes and one radio button for insertion into one MYSQL database field?
8
by: Ilan | last post by:
Hi all I need to add data from two Excel sheets (both on the same workbook) to an existing table in my SQL DB. The problem is that each sheet holds different fields for the same record, though...
3
by: Alex | last post by:
Hi all, We're importing data from a propriatery database, and below is a snippet of several lines: DateTime AcctNumber PtName Notes 12-23-2003 00432234 Smith, John Patient arrived from...
2
by: epascual | last post by:
I need to combine fields values: FirstName and Last Name to Full Name in the same table. I like to put the value on the full name after completing entry for the full name. Thanks for the help. ...
4
by: Omey Samaroo | last post by:
Dear Access Gurus, Can anyone provide me with some much needed assistance. I would like to combine the contents of 3 text fields into one field. Can someone provide some code or a method to do...
1
by: John Smith | last post by:
I am trying to combine two lookup fields into one field for display on a form and a report. I understand the basics behind how to do this: I set the control source for a new text box control to...
2
by: rpeacock | last post by:
I have a function that takes a field with values separated by commas within the field and splits them to multiple rows. Example: Field - Interior Value - abc,def,efg,ghi Output: ID Item 1 ...
1
by: striker77 | last post by:
i get a list of results based on an id and based on a status value that can be 'active', 'inprocess' or 'cancel' - it is possible that the same user has both 'active' and 'inprocess' states...
7
by: P3Eddie | last post by:
Hello all! I am new to Access, SQL and database management, and need help with an SQL statement in Access. I have 3 fields, BirthDay BirthMonth BirthYear
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.