Solved group option issue

TipsyWolf

Member
Local time
Today, 23:33
Joined
Mar 20, 2024
Messages
278
hello guys!

i have tables and relationship
1742905922910.png

i have a continuous form where i put group option so a user could input data (response to some question)

1742905638159.png


i have sql of its form
Code:
SELECT
    Employees.EmployeeID,
    Employees.TrainingID,
    Employees.FullName,
    Employees.JobTitle,
    Q1.Response AS ResponseToQuestion1,
    Q2.Response AS ResponseToQuestion2
FROM
    (Employees
    LEFT JOIN
        (SELECT EmployeeID, Response FROM Responses WHERE QuestionID = 1) AS Q1
        ON Employees.EmployeeID = Q1.EmployeeID)
    LEFT JOIN
        (SELECT EmployeeID, Response FROM Responses WHERE QuestionID = 2) AS Q2
        ON Employees.EmployeeID = Q2.EmployeeID;

and two group options with
control source ResponseToQuestion1 and ResponseToQuestion2
and name optQuestion1 and optQuestion2

additionally showing u my Question table
1742906045777.png


it says recordset is not updatable. whats the issue here ?
please help me .. already spent like 10 hours and find the solution

upd: attaching db file
 

Attachments

Last edited:

Users who are viewing this thread

Back
Top Bottom