PPRuNe Forums - View Single Post - Excel 2007 Extracting data for charts from multiple worksheets?
Old 24th May 2011 | 20:48
  #2 (permalink)  
bnt
15 Anniversary
 
Joined: Feb 2007
Posts: 755
Likes: 26
From: Dublin, Ireland. (No, I just live here.)
re 3, you could type the ranges in manually if you can learn the notation. For example, the range Sheet2!A1:D10 refers to the range A1:D10 on page Sheet2.

Also, re 2, all I can think of is to use a Macro, since there you can select a contiguous block based on a single cell using CurrentRegion e.g.
Code:
ActiveSheet.Range("a1").CurrentRegion.Select
Then create the named range from that selection, and a graph that uses the name should update automatically (in theory).
There's also a newer feature, Structured References, which looks like it could be useful - but I have no experience with it yet.

Last edited by bnt; 24th May 2011 at 21:11.
bnt is offline  
Reply