Retrieving Data From Various Sheets

rpreennz

New Member
Joined
Mar 20, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
I am in need of some assistance.

I have a summary tab which I need to pull data onto from other tabs.

I have two variables that I have put into drop downs on the summary tab

One is "branch". Each branch has a separate tab
Next is "month" within each branches tab is a budget for Jan to Dec. From Jan to Dec

I need to be able to select the branch and the month and pull the information from the correct spot.

I have been trying to USE INDIRECT mixed with an H lookup but with no luck.

Any assistance is greatly appreciated.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Hi and Welcome to MrExcel.

Could you give an example of one of your sheets (branch)
And another example of how you want the results in your summary sheet.
Can it be with a macro?
 
Upvote 0
Use code below but change based on your branch and month. All tabs will have to be laid out the same

I.e. sheet2 could be whatever is in your 1st drop-down and the range is your second drop-down

VBA Code:
Sheets("Sheet2").Range("A1:A10").Copy Destination:=Sheets("summary").Range("A1")
 
Upvote 0

Forum statistics

Threads
1,215,026
Messages
6,122,738
Members
449,094
Latest member
dsharae57

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