Linking drop down box to lookup function

koyangi87

New Member
Joined
Jul 9, 2013
Messages
1
I have a table consisting of months across row 4 and material usage in columns C-AQ. On a separate sheet, I have a dropdown box with the months. What I'm trying to do is when I select a month, all the data for usage changes depending on the months.

On a sheet named Rolling Sums, a Table that looks like this (except much bigger).
MaterialJanFebMarApr
Chem A234235235677
Chem B235235463368

<tbody>
</tbody>


On a sheet named Usage, a list of the chem with usage next to it. Above is a dropdown box.
Drop down box here with months
Chem AUsage
Chem BUsage
Chem CUsage

<tbody>
</tbody>

Anyone willing to help me out? Since my array is in a row and my results are in a column, I'm not sure how to proceed.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
You can use something like this:
Let's say "Chem A" is in B5 on "Rolling Sums" and it's in A7 on "Usage"
Dropdown box in B6

=HLOOKUP($B$6,Rolling Sums!$C$4:$AQ$7,MATCH($A7,Rolling Sums!$B$4:$B$7,),)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

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