Drop Down Menu - Data Selection Request

J

joecrabtree

All,

I have a work book with multiple worksheets in it. Each worksheet is
named after a specific date eg 'DATE 01/02/09' , 'DATE 03/04/09' etc.
There is also a summary worksheet called 'summary'. On this summary
worksheet there is a dropdown menu which has all the 'DATE xxxxx'
worksheets as a selection option.

In each 'DATE xxxxx' worksheet there are two cells A1, and B1 with
some numerical data in them. This data is in the same position in each
'DATE xxxxx' sheet.

What I would like to be able to do is as follows:

1) User select 'DATE xxxxx' worksheet from the drop down menu on the
summary sheet
2) This action will copy the data from A1 and B1 in the relevant 'DATE
xxxxx' sheet and display it in the summary sheet in cells D2, and
E2.

Any help you could give me on this would be much appreciated,

Regards

Joseph Crabtree
 
S

Stefi

If dropdown list is in B1 then enter this formula in
Summary D2: =INDIREKT("'"&$B$1&"'!A1")
Summary E2: =INDIREKT("'"&$B$1&"'!B1")

Regards,
Stefi

„joecrabtree†ezt írta:
 
J

Jacob Skaria

I assume the sheet name is "DATE 01-02-09"
Summary A2 = Date

D2 =INDIRECT("'"&"DATE " & A2&"'!A1")
E2 =INDIRECT("'"&"DATE " & A2&"'!B1")

If this post helps click Yes
 
J

joecrabtree

I assume the sheet name is "DATE 01-02-09"
Summary A2 = Date

D2 =INDIRECT("'"&"DATE " & A2&"'!A1")
E2 =INDIRECT("'"&"DATE " & A2&"'!B1")

If this post helps click Yes

Thanks all for the help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top