combing two fields to create a third

G

Guest

I have a table with locations and a seperate table with scores. I need to
combine the location # with the test # to create a unique id # for each test.
I have the calculation I need, but cannot figure out how to have the
third/new field populate with the calculated information.

=[Location ID] & " - " & [Test #]

I need the solution for the above to populate a field in my form [instructor
score], field name [test id]

Help please.
 
G

Guest

First, please do NOT include either spaces or special characters in your
column names. It leads to extra work and can cause problems.
You need a query to populate the form, in your SELECT clause have
tblLocation.LocationID & '-' & tblScore.Score.TestNo As CombinedID
CombinedID becomes the record source variable to bind your control to.

-David
 

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