I have two tables in my database, each table has a field named "Export". Each field is a checkbox. Is it possible that when I check the field in the first table it will update the field in the second table? I was thinking along the lines of placing code in the After Update event that went something like this
if [1st table]!export.value = True
then [2nd table].export.value = true
else
[2nd table].export.value = false
end if
this did not work. Does anyone know the correct way to code this or another way to achieve this?
if [1st table]!export.value = True
then [2nd table].export.value = true
else
[2nd table].export.value = false
end if
this did not work. Does anyone know the correct way to code this or another way to achieve this?