I believe that your first table is not normalized and this will create a big issue to get the results you want. Your first table should probably look like this. Note that the words Name and Value are reserved terms in Access and should not be used as a field name.
Table1
------------
tName
ID
tValue
In this manner, you can join the tables on the ID field
Here is a SQL statement that will join the information
Code:
SELECT Table1.tName, Table1.ID, Table1.tValue, Table2.Status
FROM Table1 INNER JOIN Table2 ON Table1.tValue = Table2.ID;
this presentation is vertical and not horizontal.