Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Make all values of a 3D named range appear on summary sheet

Hi All, I have a 3D named range (across 145 woksheets). I can use that for
sum, average etc but is it possible to make all the values appear on a
summary sheet?.
I am trying with 3D but also open to other ways. So I have values on H42 on
145 sheets - how to make them link quickly to a summary sheet (so I do not
have to make a formula linking each H42 to the summary sheet
Thanks in advance for any ideas
Joe

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Make all values of a 3D named range appear on summary sheet

Sub List_3D_Values()
Dim Cell As Range
Dim Sh As Worksheet
Dim csh As Worksheet
Set csh = ActiveWorkbook.Worksheets.Add
With csh
.Name = "Summary"
.Range("A1").Value = "Sheet"
.Range("B1").Value = "Value"
End With
For Each Sh In ActiveWorkbook.Worksheets
If Sh.Name < csh.Name Then
With csh.Range("A65536").End(xlUp).Offset(1, 0)
.Value = Sh.Name
.Offset(0, 1).Value = Sh.Range("H42").Value
End With
End If
Next Sh
End Sub


Gord Dibben MS Excel MVP

On Tue, 14 Apr 2009 13:47:02 -0700, Joe L
wrote:

Hi All, I have a 3D named range (across 145 woksheets). I can use that for
sum, average etc but is it possible to make all the values appear on a
summary sheet?.
I am trying with 3D but also open to other ways. So I have values on H42 on
145 sheets - how to make them link quickly to a summary sheet (so I do not
have to make a formula linking each H42 to the summary sheet
Thanks in advance for any ideas
Joe


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
Worksheet Names is Defined by Cell value on Sheet 1 (named Summary NeedToKnow Excel Discussion (Misc queries) 7 January 7th 09 07:44 PM
Sum values in columns based on values in named range Mikael Andersson Excel Worksheet Functions 10 November 12th 08 09:37 AM
combining values and text to make a reference for "named range" devo.uk Excel Worksheet Functions 4 June 10th 08 10:31 AM
How to make a dynamic named range Arup C[_2_] Excel Discussion (Misc queries) 4 December 31st 07 12:17 PM
Can I make a list, on one summary sheet, of data collected from ma anamcara Excel Worksheet Functions 3 December 15th 05 11:04 AM


All times are GMT +1. The time now is 12:46 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"