Brian Martin
Registered User.
- Local time
- Today, 08:43
- Joined
- Jul 24, 2002
- Messages
- 68
I'm trying to say in my code if the field in recordset T is like Me!txt* Then add 1 to count. eg. would be True if T!
Code:
= aa and Me!txt = aabbcc My code is wrong and I'm not sure how to word the Me!txt* part.
If ( T![code] Like Me!txt"*")= True Then
Count = Count + 1
What's the correct way to write this?