Spade_Espada

New Member
Joined
Dec 8, 2021
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
1st I am trying to setup a POS System
2nd I want to create a searchable database. What I'm trying to do is create a search box in which text can be entered so that all cell with that text is listed on sheet 1 with the data from the specified column
What I want to be able to do is;
1. Enter info in one cell
2. The data I want returned is not the matched cell but one of the adjoining cells,
I want a simple and efficient way. Please not a Nth number of possibilities, makes sure I'll mess up
My understanding is INDEX/ MATCH is the starting point
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Assuming your entry cell is A1.

=INDEX(B1:F50,MATCH(A1,B1:B50,0),4)

This formula will match the value you enter in A1, find the match in column B1:B50...and return the value from the 4th column of the original array (B1:F50). By changing the '4' you can have it return for any column in your specified array.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

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