Formula Help

JMasters

New Member
Joined
Mar 16, 2018
Messages
1
Need help making a formula work.

I have 5 columns of data, I need the input of "INV ITEM" to search in "LIST OF ITEMS" and return value of "ITEM" if contained in "LIST OF ITEMS" in "LEAD ITEM

[TABLE="width: 412"]
<tbody>[TR]
[TD]ITEM[/TD]
[TD]ALT ITEM[/TD]
[TD]LIST OF ITEMS[/TD]
[TD][/TD]
[TD]INV ITEM[/TD]
[TD]LEAD ITEM[/TD]
[/TR]
[TR]
[TD]A011[/TD]
[TD][/TD]
[TD]A011[/TD]
[TD][/TD]
[TD]A011[/TD]
[TD]A011[/TD]
[/TR]
[TR]
[TD]A064[/TD]
[TD]A062[/TD]
[TD]A064, A062[/TD]
[TD][/TD]
[TD]A062[/TD]
[TD]A064[/TD]
[/TR]
</tbody><colgroup><col span="2"><col><col span="3"></colgroup>[/TABLE]
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Assuming Item data begins in cell A2, set the formula in column E2 (Lead Item):
=IF(ISERROR(FIND(D2,C2,1)),"",A2)
 
Upvote 0

Forum statistics

Threads
1,224,890
Messages
6,181,612
Members
453,057
Latest member
LE102024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top