Is it possible to make a concatenation of a 3rd field from fields 1 and 2 all
in the same table? If so, can I make that 3rd field the primary key?
No, and no. Or at least you needn't and shouldn't.
You can concatenate two fields from a table *IN A QUERY* for display purposes:
ConcatenatedField: [FirstField] & [SecondField]
A Primary Key can consist of up to TEN fields; open the table in design view,
ctrl-click the two (or more!) fields (they should darken to indicate that
they've been selected). Then click the "key" icon on the toolbar. The fields
will then be a joint primary key; either field will allow duplicates, but you
won't be allowed to enter any records with duplicates of both fields.