T thajuggla4478 Guest Jul 26, 2001 #1 I have a memo field, and I am trying to extract a user name that is stored is the memo. It has text right before the user name stating 'Placed_by:'
I have a memo field, and I am trying to extract a user name that is stored is the memo. It has text right before the user name stating 'Placed_by:'
jatfill Registered User. Local time Today, 18:09 Joined Jun 4, 2001 Messages 150 Jul 26, 2001 #2 If you want to ignore whatever is in front of or after the user name, try Like "*" & [Enter User Name] & "*" OR If you want to search only the memo fields that have "Placed_By: " use Like "Placed_By: " & [Enter User Name] & "*"
If you want to ignore whatever is in front of or after the user name, try Like "*" & [Enter User Name] & "*" OR If you want to search only the memo fields that have "Placed_By: " use Like "Placed_By: " & [Enter User Name] & "*"