DashboardNovice
Member
The columns in yellow is my dataset. In the blue cells, I have my formula. I am trying to extract cases where column D = DELIVER TO STATE 1 or DELIVER TO STATE 2 or DELIVER TO STATE 3. I want to leave out values that end with '%.'
The orange cells shows what I am aiming for.
In H5, my SEARCH ( ) is:
After "DELIEVER TO STATE" I have a space character and a ? to represent any one character, which totals to 18 characters, so I'm not sure why my results in the blue cells includes "DELIEVER TO STATE" with a space character and a '%' at the end (which totals 20 characters). I would expect that result if I used a "*" but I used a "?" which is supposed to represent a single character as far as I know.
I also tried 18 "*" characters and I still got the same result.
What is wrong with my wildcard?
The orange cells shows what I am aiming for.
In H5, my SEARCH ( ) is:
Code:
SEARCH("DELIVER TO STATE ?",$D$5:$D$27)
After "DELIEVER TO STATE" I have a space character and a ? to represent any one character, which totals to 18 characters, so I'm not sure why my results in the blue cells includes "DELIEVER TO STATE" with a space character and a '%' at the end (which totals 20 characters). I would expect that result if I used a "*" but I used a "?" which is supposed to represent a single character as far as I know.
I also tried 18 "*" characters and I still got the same result.
What is wrong with my wildcard?