Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 202
Default An easy way to make a "summation"-sheet

I got a worksheet with 100 identical sheets containing data from 100
different projectparticipators.

I want to make a sheet, where I have the same data for each of the 100
participators. The data is calculated in each of the 100 worksheet.

It is not a sum of the data from the 100 worksheet but the exact data from
each worksheet.

Ex:
Partipator 1: ....
Participator 2:....

Can I do that in an easy way?
--
Jane
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default An easy way to make a "summation"-sheet

Assuming your summation sheet is sheet1

Sub getemall()
For i = 2 To Worksheets.Count
Cells(i, 1) = Sheets(i).Range("a3")
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Jane" wrote in message
...
I got a worksheet with 100 identical sheets containing data from 100
different projectparticipators.

I want to make a sheet, where I have the same data for each of the 100
participators. The data is calculated in each of the 100 worksheet.

It is not a sum of the data from the 100 worksheet but the exact data from
each worksheet.

Ex:
Partipator 1: ....
Participator 2:....

Can I do that in an easy way?
--
Jane


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 202
Default An easy way to make a "summation"-sheet

Thanks!

A stupid question: I have to make it in VBA?
--
Jane


"Don Guillett" skrev:

Assuming your summation sheet is sheet1

Sub getemall()
For i = 2 To Worksheets.Count
Cells(i, 1) = Sheets(i).Range("a3")
Next i
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Jane" wrote in message
...
I got a worksheet with 100 identical sheets containing data from 100
different projectparticipators.

I want to make a sheet, where I have the same data for each of the 100
participators. The data is calculated in each of the 100 worksheet.

It is not a sum of the data from the 100 worksheet but the exact data from
each worksheet.

Ex:
Partipator 1: ....
Participator 2:....

Can I do that in an easy way?
--
Jane



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 find ""Easy Sum" Not Auto Sum Damar Excel Discussion (Misc queries) 1 January 15th 07 12:19 PM
make "F51668H200AU" into "F5166-8H200AU" fitzu Excel Discussion (Misc queries) 6 August 11th 06 11:46 PM
Make "Edit" mode default, rather than "Enter"? Greg Boettcher Excel Discussion (Misc queries) 1 July 27th 06 01:46 AM
How do i enable "Group" & "Ungroup" in a protected sheet ruddojo Excel Discussion (Misc queries) 0 June 2nd 06 01:01 AM
how can I make an excel cell "mark" or "unmark" when clicked on? Rick Excel Discussion (Misc queries) 6 January 8th 06 10:15 PM


All times are GMT +1. The time now is 02:51 PM.

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"