Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to summary a data from difference worksheet, but same cell in each
worksheet, instead of type'=' then click on cell in each work sheet repeatedly, any shut cut? -- Aclim |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The formula that will generate will be something like:
=Sheet2!A1 Cell A1 in that sheet If the sheet name has a space the Sheet1 might become 'Sheet 1' You could prep all your references in notepad if its easier for you and just plop them in for each one. But you have to be specific about which cell you are referring to. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Do you mean that you want to sum the same cell from different
worksheets? If so, you can insert 2 new worksheets called "start" and "end", and move them so they encompass the sheets you want to sum from rather like a sandwich. Then you can use this formula: =start:end!A1 Hope this helps. Pete On Aug 4, 11:35*am, aclim wrote: I need to summary a data from difference worksheet, but same cell in each worksheet, instead of type'=' then click on cell in each work sheet repeatedly, any shut cut? -- Aclim |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank 'Gaijintendo', for sumary like :
=Sheet2!A1 =Sheet3!A1 =Sheet4!A1 =Sheet5!A1 =Sheet6!A1 Any short cut for this action? -- Aclim "Gaijintendo" wrote: The formula that will generate will be something like: =Sheet2!A1 Cell A1 in that sheet If the sheet name has a space the Sheet1 might become 'Sheet 1' You could prep all your references in notepad if its easier for you and just plop them in for each one. But you have to be specific about which cell you are referring to. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you could make column A in a blank sheet be numbers 1, 2, 3 etc (paste the
format down the column) Then make the formula, of column B be =concatenate("Sheet",A1,"!A1") then copy the contents of column B and "Paste Special - Values" But you probably mean in a more general sense... And I don't know of any way to program this with Visual Basic or such :-S Sorry. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank "Pete_UK" for useful short cut, how about if the case that i have few
work sheet name as: Sheet1 Sheet2 Sheet3 Sheet4 Sheet5 Sheet6 Sheet7 Sheet8 But for summary in the next worksheet, I like to collect all data in above worksheet, the formula in cell will be: Cell A1 in summary sheet will be =Sheet1!A1 Cell A2 in summary sheet will be =Sheet2!A1 Cell A3 in summary sheet will be =Sheet3!A1 Cell A4 in summary sheet will be =Sheet4!A1...etc Any short cut for this action? -- Aclim "Pete_UK" wrote: Do you mean that you want to sum the same cell from different worksheets? If so, you can insert 2 new worksheets called "start" and "end", and move them so they encompass the sheets you want to sum from rather like a sandwich. Then you can use this formula: =start:end!A1 Hope this helps. Pete On Aug 4, 11:35 am, aclim wrote: I need to summary a data from difference worksheet, but same cell in each worksheet, instead of type'=' then click on cell in each work sheet repeatedly, any shut cut? -- Aclim |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In your summary sheet you can use a formula like this:
=INDIRECT("'Sheet"&ROW(A1)&"'!A1") and then copy this down as required. Hope this helps. Pete On Aug 4, 12:16*pm, aclim wrote: Thank "Pete_UK" for useful short cut, how about if the case that i have few work sheet name as: Sheet1 Sheet2 Sheet3 Sheet4 Sheet5 Sheet6 Sheet7 Sheet8 But for summary in the next worksheet, I like to collect all data in above worksheet, the formula in cell will be: Cell A1 in summary sheet will be =Sheet1!A1 Cell A2 in summary sheet will be =Sheet2!A1 Cell A3 in summary sheet will be =Sheet3!A1 Cell A4 in summary sheet will be =Sheet4!A1...etc Any short cut for this action? -- Aclim "Pete_UK" wrote: Do you mean that you want to sum the same cell from different worksheets? If so, you can insert 2 new worksheets called "start" and "end", and move them so they encompass the sheets you want to sum from rather like a sandwich. Then you can use this formula: =start:end!A1 Hope this helps. Pete On Aug 4, 11:35 am, aclim wrote: I need to summary a data from difference worksheet, but same cell in each worksheet, instead of type'=' then click on cell in each work sheet repeatedly, any shut cut? -- Aclim- Hide quoted text - - Show quoted text - |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
NOTE: this should have been:
=SUM(start:end!A1) Sorry about that. Pete On Aug 4, 11:57*am, Pete_UK wrote: Do you mean that you want to sum the same cell from different worksheets? If so, you can insert 2 new worksheets called "start" and "end", and move them so they encompass the sheets you want to sum from rather like a sandwich. Then you can use this formula: =start:end!A1 Hope this helps. Pete On Aug 4, 11:35*am, aclim wrote: I need to summary a data from difference worksheet, but same cell in each worksheet, instead of type'=' then click on cell in each work sheet repeatedly, any shut cut? -- Aclim- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
TAB NAME IN A WOORKBOOK REFER TO A CELL ON WORKSHEET | Excel Discussion (Misc queries) | |||
How to refer cell E53 from the previous (=next left) worksheet? | Excel Discussion (Misc queries) | |||
how do I refer a cell to workbook name not worksheet | Excel Discussion (Misc queries) | |||
How can I refer to a worksheet using text in a cell? | Excel Discussion (Misc queries) | |||
refer to last cell in worksheet? | Excel Worksheet Functions |