Data validation list question

xoxonutty

New Member
Joined
Sep 20, 2018
Messages
11
Hi All, i'm a newbe so bear with me if this question has been asked and or answered already. Is there a formula that i can use which allows me to select different tabs / sheets using a drop down on my main sheet?. Or a series of formulas that allow me to select a sheet from a dropdown, input data on my main sheet and have it populate or copied to the sheet with the name I selected. Thanks in advance for any help offered.
 
You are very welcome. :) If you want to see the code, right click the "Main" tab and click "View Code". As you can see, it is a very short macro. It is a Worksheet_Change macro which is triggered automatically when you make a change in cell B2. I'm not sure what you mean by:
so I can apply it to any other sheets i add
What exactly do you want to do if you add other sheets?
 
Upvote 0

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
You may use INDIRECT formula for this
Example:

indirect($B$2&"!"&A$3&row(A2))

where, cell b2 has fixed validation for your all sheet names like week1,week2...
Row 3 has column headers (A, B, C, D...)
that means: $b$2 is taking your required sheet/tab
A$3 is checking column number from target sheet from where value will come
Row(A2) will check row number from target sheet from where value will come

Regards,
Tarun


Thank you so much, this helps
 
Upvote 0
I will have other sheets / tabs, so basically every sheet/tab will be a different job. At any given time i may have at least 5-10 jobs going. The main sheet will serve as the data entry for the others.
 
Upvote 0

Forum statistics

Threads
1,215,580
Messages
6,125,654
Members
449,245
Latest member
PatrickL

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