Can someone help me with the coding of this. I'm not very familiar with VBA. What I want to do is go through all the records in the table COMPANY_TABLE. If the field YN_Holder is set to true, then I want the YN_Holder set back to false. Here is what I want it to do down below. I just don't know how to code it. I'm assigning this code to my button's On Click.
While Not EOF COMPANY_TABLE Do
Begin
If COMPANY_TABLE!YN_HOLDER = TRUE
COMPANY_TABLE!YN_HOLDER = False
End If
Wend
If someone could help me, I'd greatly appreciate it!
While Not EOF COMPANY_TABLE Do
Begin
If COMPANY_TABLE!YN_HOLDER = TRUE
COMPANY_TABLE!YN_HOLDER = False
End If
Wend
If someone could help me, I'd greatly appreciate it!