I currently have this question in another thread, but it's probably less confusing just to post it again:
I have a checkbox on a form called "Item_Arrived", and when it is clicked, I want to put the current date into a field called "Item_arrived_date". Both of those are in a table called tblVOD_Items
the "Item_arrived_date" field is not on this form, and should not be visible (making it not visible is not an option, because it will be visible in Datasheet view). So by that I can't use the function:
me.Item_arrived_date = date
If i understand correctly, then I should use SQL for this, but I'm just not getting it to work. Anybody have some idea on how to do this?
I have a checkbox on a form called "Item_Arrived", and when it is clicked, I want to put the current date into a field called "Item_arrived_date". Both of those are in a table called tblVOD_Items
the "Item_arrived_date" field is not on this form, and should not be visible (making it not visible is not an option, because it will be visible in Datasheet view). So by that I can't use the function:
me.Item_arrived_date = date
If i understand correctly, then I should use SQL for this, but I'm just not getting it to work. Anybody have some idea on how to do this?