Link to home
Start Free TrialLog in
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,
Avatar of Rgonzo1971
Rgonzo1971

Hi,

Could you send a sample?

Regards
What do you have in

Daily_Orders!$B:$S
Avatar of 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
ASKER CERTIFIED SOLUTION
Avatar of Rob Henson
Rob Henson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
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.
Avatar of W.E.B

ASKER

Hi Rob,
yes they have unique column headers,
And the same in both sheets.
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?
Avatar of 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
Avatar of 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
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).
Avatar of W.E.B

ASKER

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