Dynamically change data for different scenarios?

rrahman

New Member
Joined
Aug 18, 2015
Messages
5
Hi - I'm trying to create a way for different scenarios for an income statement (table in worksheet 1). I would ideally like to have a drop down list that calls data from worksheet 2 and populates worksheet 1. Help?

The source of scenario data is layed out as follows (table in worksheet 2).

Scenario 1Scenario 2
Revenue
Costs

<tbody>
</tbody>

I then need the data to feed into another income statement (table in worksheet 1) that looks like this
Scenario that I can choose
Revenue
Costs

<tbody>
</tbody>
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
hi,

try this:

Book1
ABCD
1Scenario 1Scenario 2Scenario 3
2Revenue101520
3Costs567
Sheet2



Book1
AB
1Scenario 1
2Revenue10
3Costs5
Sheet1
Cell Formulas
RangeFormula
B2=INDEX(Sheet2!$B$2:$D$3,MATCH($A2,Sheet2!$A$2:$A$3,0),MATCH(B$1,Sheet2!$B$1:$D$1,0))
B3=INDEX(Sheet2!$B$2:$D$3,MATCH($A3,Sheet2!$A$2:$A$3,0),MATCH(B$1,Sheet2!$B$1:$D$1,0))
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,598
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