Merge cells for display

M

Matthew

I would like to make a query to take the full contents of one field and the
first character of another field and put them together in the same field in
the query.

Field 1 = 1456
Field 2 = Maple
Query result = 1456M

Note: I do not want to modify the original data.

Can this be done?

Matthew
 
R

Rick Brandt

Matthew said:
I would like to make a query to take the full contents of one field and the
first character of another field and put them together in the same field in
the query.

Field 1 = 1456
Field 2 = Maple
Query result = 1456M

Note: I do not want to modify the original data.

Add an additional field that uses an expression...

NewField: [Field 1] & Left([Field 2],1)
 
C

Cheryl Fischer

Sure. It's called concatenation.

In the first row of an empty column in the query's design view, type the
following:

MyNewField: Field1 & Left(Field2, 1)

hth,
 

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

Top