i am trying to assign a client name to a record based on like. i want to find the client name from clients table where the partial name from the client table is contained somewhere within the field on a form. i've tried to move my quotes all around also tried single quotes but can't seem to have success. any help would be greatly appreciated!
Me.FieldName = DLookup("[ClientName]","Clients" ,"*" & "[ClientPartial]" & "* Like " & Forms!FormName! FieldName)
Me.FieldName = DLookup("[ClientName]","Clients" ,"*" & "[ClientPartial]" & "* Like " & Forms!FormName! FieldName)
Comment