Hi Everyone
I am currently working on a project where I exported an access file from a program ( Called Revit), this program is quite tricky to import the information filled in the access file, so it can only write back following exactly the structure as how it exported it.
in a very specific point, I want to have a checkbox that when is ticked, it will write back a value to a table, and when unticked, it will write another value.
The checkboxes I created are not linked to any table, they are just placed in the Form.
I created a small code on VB as On Click even for the Checkbox:
If (East_Checkbox.Value = True) Then
East = "-1"
Else
East = "1"
End If
It works and writes the information without problems.
The only but is that when I start changing between records, the value stays as the previous way, so if in the previous record it had a tick, in the next one it will also have it, and if in the third one I want to take the tick, it will also remove it in the other two records.
Is there any code I can write so that the value gets saved and do not changed in the next records?
I tried to paste the same code I wrote in the AfterUpdate but still it does not work.
Thank you