Referencing a worksheet in an Excel 2010 formula

rdvorak17

New Member
Joined
Feb 12, 2016
Messages
2
I am using Excel 2010. Let's say I have a workbook that contains 13 worksheets. The first worksheet is named "Summary" and the remaining 12 are the months of the year (January-December). In "Summary" I want to ask the user to choose a month. Then, I use '=DATE(YEAR(E1),MONTH(E1)+1,1)' to increment to the following month. That's done a total of 2 times so the user enters 06/01/2016 and they get June, July, and August. Now, I want to take figures from each of the 3 named months and sum them on the "Summary" worksheet. The problem I am running into has to do with using the INDIRECT() formula and the fact that the Months cells aren't formatted as Text but as Date (actually Custom Dates). How would I go about referencing the June, July, and August worksheets in a formula if the data in the cells isn't Text? Something like =B1!H3 if I'm trying to access =July!H3. Hopefully this makes sense. If not, let me know and I can try to clear it up. Thanks!
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Try something like this...

INDIRECT(TEXT(DATE(YEAR(E1),MONTH(E1)+1,1),"mmmm")&"!H3")
 
Last edited:
Upvote 0
Or, since you ALREADY have those dates in cells, say A1 for example

INDIRECT(TEXT(A1,"mmmm")&"!H3")
 
Upvote 0

Forum statistics

Threads
1,215,471
Messages
6,125,002
Members
449,202
Latest member
Pertotal

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