Index/match plus lookup

jcroyle

New Member
Joined
May 2, 2011
Messages
3
Greetings all,

I am trying to modify an excel spreadsheet. This spreadsheet is for inventory control. The user will use a hand scanner to input the data from a bar code (just a #). It must then search a colum and determin if that # is there. If it is it must place a return value in another colum, same row to indicate that the number was found.

Any help?
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Welcome to the board..

If I understand right, you just want a validation that the value exists in another column?
Would a TRUE/FALSE result be acceptable?

=ISNUMBER(MATCH(A1,D:D,0))


A1 = scanned number
D:D = column to search for the number.

Returns TRUE if the value in A1 is found in column D, FALSE if it is NOT.

Hope that Helps
 
Upvote 0
The true or flase value have to be returned to a cell in the same row of the number that was found.

Let's say A: is the colum I want the true or false sent to. It must place that true or false in the same row as the number that was found in colum C:

so enter the number, Searches colum C: finds it in C:11 Output the true to A:11
 
Upvote 0
so enter the number, Searches colum C: finds it in C:11 Output the true to A:11

Lets break that out into steps

1. so enter the number - WHERE exactly do you enter the number?
2. searches column
3. finds it in C11
4. output true to A11


Say you enter the number in B1

In A1 and filled down to the last row that holds data in Column C
=IF($B$1=$C1,TRUE,"")
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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