Hello,
I can't seem to figure out something that should probably be pretty easy. It just doesn't work, I'm sure its something dumb!
I have an unbound text box with a number of fields of the form concatenated in it (I know its strange not my idea). I need to check that in the each new text box, on the AfterUpdate there aren't duplicates of any of these fields.
So right now my code is:
If Me.A1 Like "*" & Me.[txtConcatenateFields]&"*" Then
MsgBox ("You've already entered this sample")
Endif
Believe me I know that this is a bit odd, but I didn't do the design of the database and it has many issues. I'm just trying to figure out this one last thing.
Thanks for the help
I can't seem to figure out something that should probably be pretty easy. It just doesn't work, I'm sure its something dumb!
I have an unbound text box with a number of fields of the form concatenated in it (I know its strange not my idea). I need to check that in the each new text box, on the AfterUpdate there aren't duplicates of any of these fields.
So right now my code is:
If Me.A1 Like "*" & Me.[txtConcatenateFields]&"*" Then
MsgBox ("You've already entered this sample")
Endif
Believe me I know that this is a bit odd, but I didn't do the design of the database and it has many issues. I'm just trying to figure out this one last thing.
Thanks for the help