C
Chris
Hello. I would like to change the following from
If inlist = IsNull(DLookup("[CreditorName]", "tblCreditorName",
"[CreditorName]= " & "cbocreditor.Text")) Then
to
(same code except using a variable instead of control name at the end)
If inlist = IsNull(DLookup("[CreditorName]", "tblCreditorName",
"[CreditorName]= " & "strCreditor")) Then
Could someone please tell me the combination of; " ' or () to use?
If inlist = IsNull(DLookup("[CreditorName]", "tblCreditorName",
"[CreditorName]= " & "cbocreditor.Text")) Then
to
(same code except using a variable instead of control name at the end)
If inlist = IsNull(DLookup("[CreditorName]", "tblCreditorName",
"[CreditorName]= " & "strCreditor")) Then
Could someone please tell me the combination of; " ' or () to use?