Hi,
I have a db with 3 tables (among others):
1. People - Including personID, name
2. Questions - Including qID, question
3. Answers - Including personID, qID, date, value
Both People and Questions tables are dynamic - records there can change with time.
I want to create an input form with a tabular look in the following scheme:
Date: xx/yy/zzzz
Person \ Question q1 q2 q3 q4 ....
p1
p2
p3
p4
...
Of course, both rows and columns (records and fields) must be taken from the relevant tables dynamically, and the recordset must be open for editting.
Initially, a pivot table came to mind, but obviously, it can't be editted by the user. I also tried to create a query on the fly (with code and loop), but it also didn't work. Tried an un-binded form with on-the-fly created textboxes, but then all records contained the same value.
Any ideas, anyone?
Thanks,
Aviram