Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Steve
 
Posts: n/a
Default Need Function for adding rows on multiple sheets... struggling rookie ;) Thanks.

Hello,

I am trying to create a sheet which totals numbers from column B on
one final sheet. What we have is a bunch of machines which we want to
track the hours of on a monthly basis and on a "total use" basis. I
created a workbook with 13 sheets, one for each month and then a
"total" sheet. Column A will list the machine name (will be the same
name and order on each sheet) and column B will list the hours for
that month. I need the final sheet to show the machine name from
Column A and the sum of all the COlumn B info (total hours) for each
month. I'm struggling with the 3D options and other table functions.
I really appreciate any direction someone may be able to give me :)
Thank god for Deja!!

Steve
  #2   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
could you provide some more info:
- how are the sheets named
- there's the machine name located
- there#s the value to sum located on each sheet

--
Regards
Frank Kabel
Frankfurt, Germany

"Steve" schrieb im Newsbeitrag
om...
Hello,

I am trying to create a sheet which totals numbers from column B on
one final sheet. What we have is a bunch of machines which we want

to
track the hours of on a monthly basis and on a "total use" basis. I
created a workbook with 13 sheets, one for each month and then a
"total" sheet. Column A will list the machine name (will be the same
name and order on each sheet) and column B will list the hours for
that month. I need the final sheet to show the machine name from
Column A and the sum of all the COlumn B info (total hours) for each
month. I'm struggling with the 3D options and other table functions.
I really appreciate any direction someone may be able to give me :)
Thank god for Deja!!

Steve


  #3   Report Post  
Steve
 
Posts: n/a
Default

Hi Frank,

Thank you for your reply. Currently, the sheets are just named
"sheet1" through "sheet13". Sheets One through Twelve represent the
months and 13 is the "totals" sheet. The machine name is located in
Column A. The time Value for the machine is located in Column B.
Sheets One through Twelve would basically read:

Column A ColumnB

Row1 Machine 1 35
Row2 Machine 2 17
etc..

Sheet 13 Would show the name in Column A and the total number of hours
in Column B.

Thanks!!

Steve Kaufer

"Frank Kabel" wrote in message ...
Hi
could you provide some more info:
- how are the sheets named
- there's the machine name located
- there#s the value to sum located on each sheet

--
Regards
Frank Kabel
Frankfurt, Germany

"Steve" schrieb im Newsbeitrag
om...
Hello,

I am trying to create a sheet which totals numbers from column B on
one final sheet. What we have is a bunch of machines which we want

to
track the hours of on a monthly basis and on a "total use" basis. I
created a workbook with 13 sheets, one for each month and then a
"total" sheet. Column A will list the machine name (will be the same
name and order on each sheet) and column B will list the hours for
that month. I need the final sheet to show the machine name from
Column A and the sum of all the COlumn B info (total hours) for each
month. I'm struggling with the 3D options and other table functions.
I really appreciate any direction someone may be able to give me :)
Thank god for Deja!!

Steve

  #4   Report Post  
anilsolipuram
 
Posts: n/a
Default


In you 13 th sheet at c2 cell paste the below formulae

I considered the that there are 400 rows in each sheet.



=VLOOKUP(A2,Sheet1!$A$2:$B$400,2,FALSE)+VLOOKUP(A2 ,Sheet2!$A$2:$B$400,2,FALSE)+VLOOKUP(A2,Sheet3!$A$ 2:$B$400,2,FALSE)+VLOOKUP(A2,Sheet4!$A$2:$B$400,2, FALSE)+VLOOKUP(A2,Sheet5!$A$2:$B$400,2,FALSE)+VLOO KUP(A2,Sheet6!$A$2:$B$400,2,FALSE)+VLOOKUP(A2,Shee t7!$A$2:$B$400,2,FALSE)+VLOOKUP(A2,Sheet8!$A$2:$B$ 400,2,FALSE)+VLOOKUP(A2,Sheet9!$A$2:$B$400,2,FALSE )+VLOOKUP(A2,Sheet10!$A$2:$B$400,2,FALSE)+VLOOKUP( A2,Sheet11!$A$2:$B$400,2,FALSE)+VLOOKUP(A2,Sheet12 !$A$2:$B$400,2,FALSE)


--
anilsolipuram
------------------------------------------------------------------------
anilsolipuram's Profile: http://www.excelforum.com/member.php...o&userid=16271
View this thread: http://www.excelforum.com/showthread...hreadid=318889

  #5   Report Post  
Domenic
 
Posts: n/a
Default


On Sheet13, enter the following formula in B2 and copy down:

=SUMPRODUCT(SUMIF(INDIRECT("'Sheet"&ROW(INDIRECT(" 1:12"))&"'!A2:A100"),A2,INDIRECT("'Sheet"&ROW(INDI RECT("1:12"))&"'!B2:B100")))

If you decide to change the sheet names, you could use the following
formula instead...

=SUMPRODUCT(SUMIF(INDIRECT("'"&$D$2:$D$13&"'!A2:A1 00"),A2,INDIRECT("'"&$D$2:$D$13&"'!B2:B100")))

...where $D$2:$D$13 contains the sheet names. Adjust the range
(B2:B100) accordingly.

Hope this helps!

Steve Wrote:
Hello,

I am trying to create a sheet which totals numbers from column B on
one final sheet. What we have is a bunch of machines which we want to
track the hours of on a monthly basis and on a "total use" basis. I
created a workbook with 13 sheets, one for each month and then a
"total" sheet. Column A will list the machine name (will be the same
name and order on each sheet) and column B will list the hours for
that month. I need the final sheet to show the machine name from
Column A and the sum of all the COlumn B info (total hours) for each
month. I'm struggling with the 3D options and other table functions.
I really appreciate any direction someone may be able to give me :)
Thank god for Deja!!

Steve



--
Domenic
------------------------------------------------------------------------
Domenic's Profile: http://www.excelforum.com/member.php...o&userid=10785
View this thread: http://www.excelforum.com/showthread...hreadid=318889



  #6   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
try
=SUMPRODUCT(SUMIF(INDIRECT("'Sheet" &ROW(INDIRECT("1:12")) &
"'!A1:A100"),A1,INDIRECT("'Sheet" &ROW(INDIRECT("1:12")) &
"'!B1:B100")))

--
Regards
Frank Kabel
Frankfurt, Germany

"Steve" schrieb im Newsbeitrag
om...
Hi Frank,

Thank you for your reply. Currently, the sheets are just named
"sheet1" through "sheet13". Sheets One through Twelve represent the
months and 13 is the "totals" sheet. The machine name is located in
Column A. The time Value for the machine is located in Column B.
Sheets One through Twelve would basically read:

Column A ColumnB

Row1 Machine 1 35
Row2 Machine 2 17
etc..

Sheet 13 Would show the name in Column A and the total number of

hours
in Column B.

Thanks!!

Steve Kaufer

"Frank Kabel" wrote in message

...
Hi
could you provide some more info:
- how are the sheets named
- there's the machine name located
- there#s the value to sum located on each sheet

--
Regards
Frank Kabel
Frankfurt, Germany

"Steve" schrieb im Newsbeitrag
om...
Hello,

I am trying to create a sheet which totals numbers from column B

on
one final sheet. What we have is a bunch of machines which we

want
to
track the hours of on a monthly basis and on a "total use" basis.

I
created a workbook with 13 sheets, one for each month and then a
"total" sheet. Column A will list the machine name (will be the

same
name and order on each sheet) and column B will list the hours

for
that month. I need the final sheet to show the machine name from
Column A and the sum of all the COlumn B info (total hours) for

each
month. I'm struggling with the 3D options and other table

functions.
I really appreciate any direction someone may be able to give me

:)
Thank god for Deja!!

Steve


  #7   Report Post  
Steve
 
Posts: n/a
Default

Thanks a million for everyone's help. I really appreciate it!!!!!!

Steve


Domenic wrote in message ...
On Sheet13, enter the following formula in B2 and copy down:

=SUMPRODUCT(SUMIF(INDIRECT("'Sheet"&ROW(INDIRECT(" 1:12"))&"'!A2:A100"),A2,INDIRECT("'Sheet"&ROW(INDI RECT("1:12"))&"'!B2:B100")))

If you decide to change the sheet names, you could use the following
formula instead...

=SUMPRODUCT(SUMIF(INDIRECT("'"&$D$2:$D$13&"'!A2:A1 00"),A2,INDIRECT("'"&$D$2:$D$13&"'!B2:B100")))

..where $D$2:$D$13 contains the sheet names. Adjust the range
(B2:B100) accordingly.

Hope this helps!

Steve Wrote:
Hello,

I am trying to create a sheet which totals numbers from column B on
one final sheet. What we have is a bunch of machines which we want to
track the hours of on a monthly basis and on a "total use" basis. I
created a workbook with 13 sheets, one for each month and then a
"total" sheet. Column A will list the machine name (will be the same
name and order on each sheet) and column B will list the hours for
that month. I need the final sheet to show the machine name from
Column A and the sum of all the COlumn B info (total hours) for each
month. I'm struggling with the 3D options and other table functions.
I really appreciate any direction someone may be able to give me :)
Thank god for Deja!!

Steve

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
Multiple sheets selected twa14 Excel Discussion (Misc queries) 2 December 21st 04 11:15 AM
linking multiple sheets to a summary sheet greg g Excel Discussion (Misc queries) 1 December 16th 04 07:43 AM
Inserting Multiple Rows with Formulas ShineboxNJ Excel Worksheet Functions 2 November 18th 04 02:30 AM
CountIF across multiple sheets in a workbook Al Excel Worksheet Functions 1 October 29th 04 01:15 PM
Count rows based on multiple criteria Murph Excel Worksheet Functions 1 October 28th 04 07:13 AM


All times are GMT +1. The time now is 05:18 AM.

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"