Hello,
Can someone please help me isolate a particular word in a text string? I am using a query in Microsoft Access 2013.
I have a field called “Description”. I created 3 separate queries to use the same Description field. I need to see three separate columns using the same Description field, but pulling data with 3 different words. Sample below.
Description:
Work order part W0001 Indoor office building
Work order part W0001 Outdoor office building
Work order part W0001 in many offices
Query 1: Pulling data with the words “Indoor” and “W0001”
Query 2: Pulling data with the words “Outdoor” and “W0001”
Query 3: Pulling data with the words “W0001”
Query 1 and 2 seem to work, but Query 3 is not working. It is still pulling all of the data with Indoor and Outdoor in the string.
Can someone please help me isolate a particular word in a text string? I am using a query in Microsoft Access 2013.
I have a field called “Description”. I created 3 separate queries to use the same Description field. I need to see three separate columns using the same Description field, but pulling data with 3 different words. Sample below.
Description:
Work order part W0001 Indoor office building
Work order part W0001 Outdoor office building
Work order part W0001 in many offices
Query 1: Pulling data with the words “Indoor” and “W0001”
Work order part W0001 Indoor office building
Like "*INDOOR*" And Like "*W0001*"Query 2: Pulling data with the words “Outdoor” and “W0001”
Work order part W0001 Outdoor office building
Like "*OUTDOOR*" And Like "*W0001*"Query 3: Pulling data with the words “W0001”
Work order part W0001 in many offices
Like "W0001*"Query 1 and 2 seem to work, but Query 3 is not working. It is still pulling all of the data with Indoor and Outdoor in the string.