Adding the data of two columns together.

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

Guest

I have two columns I need to add the data together and place into a third
column.

for example.

Column 1 says - widget
Column 2 says - 002

I would like column three to say "widget-002" so I need to add a "-" as well.

Can someone show me how to do this? This would be a great help in saving me
time.

Thanks
Roman
 
Use a calculated field in your query:

Field3: [Field1] & "-" & [Field2]
 

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

Back
Top