Hi All,
I am new to Access and would like a some assistance with the following.
Tables
Test Calibration
Calibration ID (Private Key)
Test Set ID (Lookup to Test Set Table)
Date Calibrated
Test Table
Test ID (Private Key)
Equipment ID
Date Of Test
Test Set ID (Lookup to Test Set Table)
Calibration ID
When the user selects a value from the Test Set ID field in the Test Table, I would like a drop down list to appear that would return the content of the Test Calibration Table, where the Test Set ID matches the value selected in the Test Set ID in table Test Table, allowing the Calibrated ID to be placed into the Calibrated ID in the Test Table.
The rows returned would be dynamic based on the value selected from the Test Set ID each time the user puts a new record into the table.
The current SQL statement that I have used for this is
SELECT [Test Calibration].[Calibration ID], [Test Calibration].[Test Set ID], [Test Calibration].[Date Calibrated]
FROM [Test Calibration]
WHERE [Test Table].[Test Set ID].Value = [Test Calibration].[Test Set ID]
For some reason when I initially open the table I receive a message asking the user to enter the parameter value for Test Table.Test Set ID then select ok or cancel.
If I enter the value of one of the Test Set IDs into the parameter box and select OK, that appears to return the same values for all records created regardless of the Test Set ID selection made by the user.
I would be very grateful of any assistance with this.
I am new to Access and would like a some assistance with the following.
Tables
Test Calibration
Calibration ID (Private Key)
Test Set ID (Lookup to Test Set Table)
Date Calibrated
Test Table
Test ID (Private Key)
Equipment ID
Date Of Test
Test Set ID (Lookup to Test Set Table)
Calibration ID
When the user selects a value from the Test Set ID field in the Test Table, I would like a drop down list to appear that would return the content of the Test Calibration Table, where the Test Set ID matches the value selected in the Test Set ID in table Test Table, allowing the Calibrated ID to be placed into the Calibrated ID in the Test Table.
The rows returned would be dynamic based on the value selected from the Test Set ID each time the user puts a new record into the table.
The current SQL statement that I have used for this is
SELECT [Test Calibration].[Calibration ID], [Test Calibration].[Test Set ID], [Test Calibration].[Date Calibrated]
FROM [Test Calibration]
WHERE [Test Table].[Test Set ID].Value = [Test Calibration].[Test Set ID]
For some reason when I initially open the table I receive a message asking the user to enter the parameter value for Test Table.Test Set ID then select ok or cancel.
If I enter the value of one of the Test Set IDs into the parameter box and select OK, that appears to return the same values for all records created regardless of the Test Set ID selection made by the user.
I would be very grateful of any assistance with this.