I have a checkbox on a form (ClientDetails). the form also contains text boxes for "ClientID" and "ClientName". The values for these come from a table called 'clients'
I want the checkbox to be TRUE if the ClientName on the form appears in the "Client Name" field of another table called 'links'.
I used the following code in the ControlSource, however the check box appears 'blacked out'.
Any ideas?
I want the checkbox to be TRUE if the ClientName on the form appears in the "Client Name" field of another table called 'links'.
I used the following code in the ControlSource, however the check box appears 'blacked out'.
Code:
=IIf([ClientName]=[links]![Client Name],True,False)
Any ideas?