Hey all,
I'm trying to present my form to my users that look like an excel form (data sheet view). My problem is that it is a non-updateable query due to a Left Join on one of the 3 tables.
The table layout is like
I do this so I can display all the client names and a piece of information from the program info table and then just punch in what I need in the fields for the hours table. It seems quicker than having to navigate to each client, open the hours form and fill it out, then repeat for every other client.
I'm not sure if this is a form or query forum question, but I'm guessing I may have to do this with unbound fields and do an update/insert by VBA from the form, so that's why I posted it here.
Any suggestions?
I'm trying to present my form to my users that look like an excel form (data sheet view). My problem is that it is a non-updateable query due to a Left Join on one of the 3 tables.
The table layout is like
Code:
-------- ------------- --------------
tblHours <--- tblClientInfo ==== tblProgramInfo
-------- ------------- --------------
I do this so I can display all the client names and a piece of information from the program info table and then just punch in what I need in the fields for the hours table. It seems quicker than having to navigate to each client, open the hours form and fill it out, then repeat for every other client.
I'm not sure if this is a form or query forum question, but I'm guessing I may have to do this with unbound fields and do an update/insert by VBA from the form, so that's why I posted it here.
Any suggestions?