Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
Syahira
 
Posts: n/a
Default Forgot to add a sheet to formula.

I'm creating a workbook regarding the traveling expenses of my teammates.
Every sheet and tab have their name and I'm summing the in summary sheet in
the workbook. Then I realised that I've forgot to add another one sheet into
the formula in summary. Here is the example:

Jofri!F8+'Ewe Chean'!F8+Yanti!F8+Huda!F8+'Jee Onn'!F8+'Chee
Keet'!F8+Jessica!F8+Ellis!F8+JJ!F8+Syahira!F8+Ili! F8

So how do I add the missing name / sheet to this formula. There are a lot of
these formulas in the summary sheet.

Thank You


  #2   Report Post  
Posted to microsoft.public.excel.newusers
Peo Sjoblom
 
Posts: n/a
Default Forgot to add a sheet to formula.

Put a first and last sheet around all sheets in question and use

=SUM(First:Last!F8)

I f all sheets are in one set (without any other sheets in-between you can
replace first by the first of those sheets and the last with the last of
those sheets, maybe something like

=SUM(Jofri:Ili!F8)

so you are doing far too much work. Otherwise use edit replace and replace
the last sheet with the last sheet and the added sheet

Find what

Ili!F8

replace with

Ili!F8+nameF8

replace all





--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"Syahira" wrote in message
...
I'm creating a workbook regarding the traveling expenses of my teammates.
Every sheet and tab have their name and I'm summing the in summary sheet
in
the workbook. Then I realised that I've forgot to add another one sheet
into
the formula in summary. Here is the example:

Jofri!F8+'Ewe Chean'!F8+Yanti!F8+Huda!F8+'Jee Onn'!F8+'Chee
Keet'!F8+Jessica!F8+Ellis!F8+JJ!F8+Syahira!F8+Ili! F8

So how do I add the missing name / sheet to this formula. There are a lot
of
these formulas in the summary sheet.

Thank You



  #3   Report Post  
Posted to microsoft.public.excel.newusers
Syahira
 
Posts: n/a
Default Forgot to add a sheet to formula.

but what if I have multiple cells? Not just F8 only?

"Peo Sjoblom" wrote:

Put a first and last sheet around all sheets in question and use

=SUM(First:Last!F8)

I f all sheets are in one set (without any other sheets in-between you can
replace first by the first of those sheets and the last with the last of
those sheets, maybe something like

=SUM(Jofri:Ili!F8)

so you are doing far too much work. Otherwise use edit replace and replace
the last sheet with the last sheet and the added sheet

Find what

Ili!F8

replace with

Ili!F8+nameF8

replace all





--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"Syahira" wrote in message
...
I'm creating a workbook regarding the traveling expenses of my teammates.
Every sheet and tab have their name and I'm summing the in summary sheet
in
the workbook. Then I realised that I've forgot to add another one sheet
into
the formula in summary. Here is the example:

Jofri!F8+'Ewe Chean'!F8+Yanti!F8+Huda!F8+'Jee Onn'!F8+'Chee
Keet'!F8+Jessica!F8+Ellis!F8+JJ!F8+Syahira!F8+Ili! F8

So how do I add the missing name / sheet to this formula. There are a lot
of
these formulas in the summary sheet.

Thank You




  #4   Report Post  
Posted to microsoft.public.excel.newusers
Bob Phillips
 
Posts: n/a
Default Forgot to add a sheet to formula.

=SUM(First:Last!F8)+=SUM(First:Last!F9)+ etc.

is the simplest way

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Syahira" wrote in message
...
but what if I have multiple cells? Not just F8 only?

"Peo Sjoblom" wrote:

Put a first and last sheet around all sheets in question and use

=SUM(First:Last!F8)

I f all sheets are in one set (without any other sheets in-between you

can
replace first by the first of those sheets and the last with the last of
those sheets, maybe something like

=SUM(Jofri:Ili!F8)

so you are doing far too much work. Otherwise use edit replace and

replace
the last sheet with the last sheet and the added sheet

Find what

Ili!F8

replace with

Ili!F8+nameF8

replace all





--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"Syahira" wrote in message
...
I'm creating a workbook regarding the traveling expenses of my

teammates.
Every sheet and tab have their name and I'm summing the in summary

sheet
in
the workbook. Then I realised that I've forgot to add another one

sheet
into
the formula in summary. Here is the example:

Jofri!F8+'Ewe Chean'!F8+Yanti!F8+Huda!F8+'Jee Onn'!F8+'Chee
Keet'!F8+Jessica!F8+Ellis!F8+JJ!F8+Syahira!F8+Ili! F8

So how do I add the missing name / sheet to this formula. There are a

lot
of
these formulas in the summary sheet.

Thank You






  #5   Report Post  
Posted to microsoft.public.excel.newusers
Bob Phillips
 
Posts: n/a
Default Forgot to add a sheet to formula.

Here is an other way

List all of the sheet names in cells M1:Mn, let's say M1:M3 in this example,
and then use

=SUMPRODUCT(SUMIF(INDIRECT(M1:M3&"!F8:F15"),"<"))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Syahira" wrote in message
...
but what if I have multiple cells? Not just F8 only?

"Peo Sjoblom" wrote:

Put a first and last sheet around all sheets in question and use

=SUM(First:Last!F8)

I f all sheets are in one set (without any other sheets in-between you

can
replace first by the first of those sheets and the last with the last of
those sheets, maybe something like

=SUM(Jofri:Ili!F8)

so you are doing far too much work. Otherwise use edit replace and

replace
the last sheet with the last sheet and the added sheet

Find what

Ili!F8

replace with

Ili!F8+nameF8

replace all





--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"Syahira" wrote in message
...
I'm creating a workbook regarding the traveling expenses of my

teammates.
Every sheet and tab have their name and I'm summing the in summary

sheet
in
the workbook. Then I realised that I've forgot to add another one

sheet
into
the formula in summary. Here is the example:

Jofri!F8+'Ewe Chean'!F8+Yanti!F8+Huda!F8+'Jee Onn'!F8+'Chee
Keet'!F8+Jessica!F8+Ellis!F8+JJ!F8+Syahira!F8+Ili! F8

So how do I add the missing name / sheet to this formula. There are a

lot
of
these formulas in the summary sheet.

Thank You






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
Change sheet name in formula kojimm Excel Worksheet Functions 4 July 15th 05 11:43 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 07:48 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Need formula for sheet & cell reference MPH Excel Worksheet Functions 0 January 16th 05 03:39 PM


All times are GMT +1. The time now is 11:48 PM.

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

About Us

"It's about Microsoft Excel"