Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have over 100 worksheets which are layout exactly the same. I want to
create a summary sheet to display only certain information from all of them...like name, sales total, numbers of calls. I don't want to consolidate or tally the information just display them. Does anyone know how to do this? |
#2
![]() |
|||
|
|||
![]()
Many ways to skin this cat
=Sheet1!C4 =Sheet1!C4 ... If the sheets will be always be accessible in an open workbook you could use =INDIRECT("Sheet"&ROW()&"!C4") In a macro you could use For i = 1 To 100 Cells(i, 1).FormulaR1C1 = "=Sheet" & i & "!R4C3" Next Jerry stardust wrote: I have over 100 worksheets which are layout exactly the same. I want to create a summary sheet to display only certain information from all of them...like name, sales total, numbers of calls. I don't want to consolidate or tally the information just display them. Does anyone know how to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Extracting data from multiple worksheets into a list | Excel Worksheet Functions | |||
Finding Data in multiple worksheets | Excel Discussion (Misc queries) | |||
Display multiple data | Excel Discussion (Misc queries) | |||
Merge Data From Multiple Worksheets | Excel Worksheet Functions | |||
data entry on multiple worksheets | Excel Discussion (Misc queries) |