Best Solution for returning data - index?

excelnewlearner

New Member
Joined
Jul 19, 2024
Messages
7
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
  2. MacOS
Hello,

Hope someone can help!

Basically what I am trying to do is return a whole row of information based on a single list item. This will allow to generate estimates and all I have to do is adjust the Quantity.

I have put a sample sheet together. So sheet one would select the item, but then populate all the information across the row as per sheet 2.

Would really appreciate any solutions.

thanks
Sample.xlsx
A
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Sheet1
Cells with Data Validation
CellAllowCriteria
A4:A24List=Sheet2!$A$2:$A$7
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Sample.xlsx
ABCD
1
2
3Item QTYDESCRIPTIONRATE
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Sheet1
Cells with Data Validation
CellAllowCriteria
A4:A17List=Sheet2!$A$2:$A$7
 
Upvote 0
Sample.xlsx
ABCD
1
2ITEMDESCRIPTION RATE
3WALLSXXXX5
4PAINTINGXXXX10
5ROOFXXXX50
6PAINTINGXXXX10
7
8
9
10
11
Sheet2
 
Upvote 0
Try this formula in cell C4 of 'Sheet1' and copy down to C17

Excel Formula:
=IF(A4="","",INDEX(Sheet2!B$2:C$17,MATCH(A4,Sheet2!A$2:A$17,0),0))
 
Upvote 0
You are welcome. Thanks for the follow-up.
 
Upvote 0

Forum statistics

Threads
1,221,544
Messages
6,160,438
Members
451,646
Latest member
mmix803

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