Avatar of W.E.B
W.E.B
 asked on

Excel Formula to search part of

Hello,
can you please help,
I'm trying to search part of text in one column and get results back from another sheet.
I tried below formulas, but not getting proper results.

=IFERROR(VLOOKUP("*"&LEFT($A2,15)&"*", Daily_Orders!$B:$S, 3,FALSE),"")
=IF(ISNA(VLOOKUP("*"&LEFT($A2,15)&"*",Daily_Orders!$B:$S,1,0)),"",Daily_Orders!B2)

Example in Column A to lookup
124453367
64445369979335357682
TR: 909334288787
TR: 54998762445, 8796498126409,221421414
M22300061070000010093

Thanks,
Microsoft Excel

Avatar of undefined
Last Comment
W.E.B

8/22/2022 - Mon
Rgonzo1971

Hi,

Could you send a sample?

Regards
Saqib Husain

What do you have in

Daily_Orders!$B:$S
W.E.B

ASKER
Please see attached sample,

here's what I have,
I need to scan few hundred orders into Column A,
after I'm done,
In Column B,C,D,.....
 I need to search the tracking in the Daily_Orders tab.
And return
Columns b,c,d,e,.........

One Example,
if I scan 8796498126409, it should find it in the Daily_orders tab (Column S) --
TR: 54998762445, 8796498126409,221421414
And return
Columns b,c,d,e,.........
Sample.xlsx
Your help has saved me hundreds of hours of internet surfing.
fblack61
ASKER CERTIFIED SOLUTION
Rob Henson

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Rob Henson

If your proper data has unique column headers, and they are the same across the source and the result tables, the column index at the end of the above formula can be adjusted to a MATCH formula to find the relevant column Header.
W.E.B

ASKER
Hi Rob,
yes they have unique column headers,
And the same in both sheets.
Christopher Jay Wolff

I'm wondering why the daily orders are put into the same cell in column S.  It might be a better practice to have a separate row for each of the daily orders, especially if there is a focus on searching and manipulating your data based on individual column S entries.

Would you be able to get column S to list a separate row for each datum in column S?



Then to try to rephrase to make sure we're thinking alike...

You would start with two worksheets.  One is the Daily Orders tab, the other worksheet is blank with a tab named Scan, and you scan into column A of the blank sheet a few hundred entries.  Then, miraculously, the data in the remaining columns of Scan tab is populated by transferred data from Daily Orders tab, for whatever row provides a match.  Is that correct?

Also, if searching data in Daily Orders tab, using the data from column A of Scan tab, are you only looking at column S of Daily Orders tab, or all the data in the Daily Orders tab?
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
W.E.B

ASKER
Rob,
I tried the formula,
it's working only on numbers.

64371415471655
6243371415988067110      
67682517141613

not worling on below example (Getting #N/A)
M22300061070000010093      
M22300061070000010152
W.E.B

ASKER
Hi Chris,
the codes I'm scanning are not always to be found in Column S.
different clients, different columns to use.
So, I'll be looking through all columns (A-S)

Thanks
Rob Henson

Your last comment answers why you are getting #N/A for the entries starting M223.

They are not present in column S so the formula is not finding them.

All standard lookup formulas (INDEX, LOOKUP etc) rely on the lookup value being in one column; I suspect a multiple column scan can be achieved with VBA or a User Defined Function (effectively VBA embedded into a formula).
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes
W.E.B

ASKER
Thanks Rob,
your formula worked like a charm , with some tweaks,