Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Vic Vic is offline
external usenet poster
 
Posts: 117
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc

my workbook consist of 10 one year expense tabs 2009 thru 2019 and a summary
tab.
i want the summary tab to tally the calender year expense as i copy the
summary tab from year to year. Every year tab uses the exact same cell from
year to year. the only difference is the the tab 2009, 2010, 2011, etc
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc

Hi,

This assumes the first sheet is 2009 and the last 2019 and all the other
sheet are between those 2 sheets

= SUM('2009:2019'!A1)

Mike

"Vic" wrote:

my workbook consist of 10 one year expense tabs 2009 thru 2019 and a summary
tab.
i want the summary tab to tally the calender year expense as i copy the
summary tab from year to year. Every year tab uses the exact same cell from
year to year. the only difference is the the tab 2009, 2010, 2011, etc

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc


Mike H;253207 Wrote:
Hi,

This assumes the first sheet is 2009 and the last 2019 and all the
other
sheet are between those 2 sheets

= SUM('2009:2019'!A1)

Mike

"Vic" wrote:

my workbook consist of 10 one year expense tabs 2009 thru 2019 and a

summary
tab.
i want the summary tab to tally the calender year expense as i copy

the
summary tab from year to year. Every year tab uses the exact same

cell from
year to year. the only difference is the the tab 2009, 2010, 2011,

etc


If you're not sure of your syntax select the cell were the formula
should be
Enter =sum(
Click the cell you want to sum
While pressing the shift key select the last tab you need.
Add the closing parenthesis
Done


--
Pecoflyer

Cheers -
*'Membership is free' (http://www.thecodecage.com)* & allows file
upload -faster and better answers

*Adding your XL version* to your post helps finding solution faster
------------------------------------------------------------------------
Pecoflyer's Profile: http://www.thecodecage.com/forumz/member.php?userid=14
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=70701

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Vic Vic is offline
external usenet poster
 
Posts: 117
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc

Thank but thats not it. ok lets try to explain. 2009 tab is a running expense
for the year. it configure column a date 1/1 thru 12/31. each month has 5
catogories from columns D-H and Columns M-Q each of these columns has a
monthly total. i have created a separate summary tab which separates these
columns and import the monthly totals. (='2009'!G34) i would like to copy
this summary tab in front of each year and only have the 2009 in the formulas
change to ='2010'!G34,='2011'!G34 etc. can this be done without manual entry
for each year?

"Pecoflyer" wrote:


Mike H;253207 Wrote:
Hi,

This assumes the first sheet is 2009 and the last 2019 and all the
other
sheet are between those 2 sheets

= SUM('2009:2019'!A1)

Mike

"Vic" wrote:

my workbook consist of 10 one year expense tabs 2009 thru 2019 and a

summary
tab.
i want the summary tab to tally the calender year expense as i copy

the
summary tab from year to year. Every year tab uses the exact same

cell from
year to year. the only difference is the the tab 2009, 2010, 2011,

etc


If you're not sure of your syntax select the cell were the formula
should be
Enter =sum(
Click the cell you want to sum
While pressing the shift key select the last tab you need.
Add the closing parenthesis
Done


--
Pecoflyer

Cheers -
*'Membership is free' (http://www.thecodecage.com)* & allows file
upload -faster and better answers

*Adding your XL version* to your post helps finding solution faster
------------------------------------------------------------------------
Pecoflyer's Profile: http://www.thecodecage.com/forumz/member.php?userid=14
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=70701


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc

Hi,

You can use the following formula and copy down. A3:A13 has 2009 to 2019

=INDIRECT("'"&A3&"'!G34")

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Vic" wrote in message
...
Thank but thats not it. ok lets try to explain. 2009 tab is a running
expense
for the year. it configure column a date 1/1 thru 12/31. each month has 5
catogories from columns D-H and Columns M-Q each of these columns has a
monthly total. i have created a separate summary tab which separates these
columns and import the monthly totals. (='2009'!G34) i would like to copy
this summary tab in front of each year and only have the 2009 in the
formulas
change to ='2010'!G34,='2011'!G34 etc. can this be done without manual
entry
for each year?

"Pecoflyer" wrote:


Mike H;253207 Wrote:
Hi,

This assumes the first sheet is 2009 and the last 2019 and all the
other
sheet are between those 2 sheets

= SUM('2009:2019'!A1)

Mike

"Vic" wrote:

my workbook consist of 10 one year expense tabs 2009 thru 2019 and a
summary
tab.
i want the summary tab to tally the calender year expense as i copy
the
summary tab from year to year. Every year tab uses the exact same
cell from
year to year. the only difference is the the tab 2009, 2010, 2011,
etc


If you're not sure of your syntax select the cell were the formula
should be
Enter =sum(
Click the cell you want to sum
While pressing the shift key select the last tab you need.
Add the closing parenthesis
Done


--
Pecoflyer

Cheers -
*'Membership is free' (http://www.thecodecage.com)* & allows file
upload -faster and better answers

*Adding your XL version* to your post helps finding solution faster
------------------------------------------------------------------------
Pecoflyer's Profile:
http://www.thecodecage.com/forumz/member.php?userid=14
View this thread:
http://www.thecodecage.com/forumz/sh...ad.php?t=70701




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Vic Vic is offline
external usenet poster
 
Posts: 117
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc

i dont see how this will link the year tabs to the summary tab. each year is
its own tab. my summary tab import the monthly total from the 2009 tab/
worksheet only.
so my workbook is as follows: table, summary, 2009, 2010, 2011 and so on.
what i want to do is create a copy of the summary page in front of each year
and extract the same data from each year. each year tab uses the exact same
cell. so i want the summary tab to extract the exact same cell data fdor each
different tab.
is there a way to post an example so that everyone understand what i am
trying to do

"Ashish Mathur" wrote:

Hi,

You can use the following formula and copy down. A3:A13 has 2009 to 2019

=INDIRECT("'"&A3&"'!G34")

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Vic" wrote in message
...
Thank but thats not it. ok lets try to explain. 2009 tab is a running
expense
for the year. it configure column a date 1/1 thru 12/31. each month has 5
catogories from columns D-H and Columns M-Q each of these columns has a
monthly total. i have created a separate summary tab which separates these
columns and import the monthly totals. (='2009'!G34) i would like to copy
this summary tab in front of each year and only have the 2009 in the
formulas
change to ='2010'!G34,='2011'!G34 etc. can this be done without manual
entry
for each year?

"Pecoflyer" wrote:


Mike H;253207 Wrote:
Hi,

This assumes the first sheet is 2009 and the last 2019 and all the
other
sheet are between those 2 sheets

= SUM('2009:2019'!A1)

Mike

"Vic" wrote:

my workbook consist of 10 one year expense tabs 2009 thru 2019 and a
summary
tab.
i want the summary tab to tally the calender year expense as i copy
the
summary tab from year to year. Every year tab uses the exact same
cell from
year to year. the only difference is the the tab 2009, 2010, 2011,
etc

If you're not sure of your syntax select the cell were the formula
should be
Enter =sum(
Click the cell you want to sum
While pressing the shift key select the last tab you need.
Add the closing parenthesis
Done


--
Pecoflyer

Cheers -
*'Membership is free' (http://www.thecodecage.com)* & allows file
upload -faster and better answers

*Adding your XL version* to your post helps finding solution faster
------------------------------------------------------------------------
Pecoflyer's Profile:
http://www.thecodecage.com/forumz/member.php?userid=14
View this thread:
http://www.thecodecage.com/forumz/sh...ad.php?t=70701


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default link formulas sheet 1 to same cells for sheet 1,2,3 etc

Hi,

Your question is not clear. You may mail me your question at


--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Vic" wrote in message
...
i dont see how this will link the year tabs to the summary tab. each year
is
its own tab. my summary tab import the monthly total from the 2009 tab/
worksheet only.
so my workbook is as follows: table, summary, 2009, 2010, 2011 and so on.
what i want to do is create a copy of the summary page in front of each
year
and extract the same data from each year. each year tab uses the exact
same
cell. so i want the summary tab to extract the exact same cell data fdor
each
different tab.
is there a way to post an example so that everyone understand what i am
trying to do

"Ashish Mathur" wrote:

Hi,

You can use the following formula and copy down. A3:A13 has 2009 to 2019

=INDIRECT("'"&A3&"'!G34")

Hope this helps.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Vic" wrote in message
...
Thank but thats not it. ok lets try to explain. 2009 tab is a running
expense
for the year. it configure column a date 1/1 thru 12/31. each month has
5
catogories from columns D-H and Columns M-Q each of these columns has
a
monthly total. i have created a separate summary tab which separates
these
columns and import the monthly totals. (='2009'!G34) i would like to
copy
this summary tab in front of each year and only have the 2009 in the
formulas
change to ='2010'!G34,='2011'!G34 etc. can this be done without manual
entry
for each year?

"Pecoflyer" wrote:


Mike H;253207 Wrote:
Hi,

This assumes the first sheet is 2009 and the last 2019 and all the
other
sheet are between those 2 sheets

= SUM('2009:2019'!A1)

Mike

"Vic" wrote:

my workbook consist of 10 one year expense tabs 2009 thru 2019 and
a
summary
tab.
i want the summary tab to tally the calender year expense as i
copy
the
summary tab from year to year. Every year tab uses the exact same
cell from
year to year. the only difference is the the tab 2009, 2010, 2011,
etc

If you're not sure of your syntax select the cell were the formula
should be
Enter =sum(
Click the cell you want to sum
While pressing the shift key select the last tab you need.
Add the closing parenthesis
Done


--
Pecoflyer

Cheers -
*'Membership is free' (http://www.thecodecage.com)* & allows file
upload -faster and better answers

*Adding your XL version* to your post helps finding solution faster
------------------------------------------------------------------------
Pecoflyer's Profile:
http://www.thecodecage.com/forumz/member.php?userid=14
View this thread:
http://www.thecodecage.com/forumz/sh...ad.php?t=70701


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I link cells, sheet to sheet, to recognize row deletions? LeeC Excel Discussion (Misc queries) 30 November 6th 09 10:26 PM
???Replicate a sheet but chart still link to original sheet Jaylin Charts and Charting in Excel 1 October 9th 06 03:14 PM
How can I create a link between cells in two separate Excel sheet Dawnmarie Excel Worksheet Functions 1 April 18th 06 06:34 PM
Excel how do I link text values in one sheet to another sheet? chrisjtm Excel Discussion (Misc queries) 3 March 9th 06 06:09 AM
How do I link cells from a workbook, to talley one one sheet? Hammer Excel Worksheet Functions 1 January 18th 06 07:47 PM


All times are GMT +1. The time now is 10:27 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"