A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

extract items from filtered list



 
 
Thread Tools Display Modes
  #1  
Old April 21st, 2009, 08:01 PM posted to microsoft.public.excel.worksheet.functions
andy62
external usenet poster
 
Posts: 140
Default extract items from filtered list

I need to set up a report that dynamically displays on another sheet items
from one column of a filtered range. After the advanced filter is executed,
I may have 12 records left showing out of the 400. On sheet2 I need to
display the visible data from one of the columns, let's say in cells A1:A12.
So this would be one of those "copy down" functions that displays the first
item in A1, the second in A2, etc. I've been tinkering with all the INDEX,
OFFSET, SUBTOTAL combinations, but am not quite getting it.

TIA
  #2  
Old April 21st, 2009, 10:01 PM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default extract items from filtered list

Try this array formula**.

Assume:

The full range that you want to extract the data from is A2:A20 and this
range is given the defined name Rng.

Array entered** on some other sheet starting in cell A1:

=IF(ROWS(A$1:A1)=SUBTOTAL(3,Rng),INDEX(Rng,MATCH( ROWS(A$1:A1),SUBTOTAL(3,OFFSET(Rng,,,ROW(Rng)-MIN(ROW(Rng))+1)),0)),"")

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER). Hold down both the CTRL key and the SHIFT
key then hit ENTER.

Copy down until you get blanks

--
Biff
Microsoft Excel MVP


"andy62" wrote in message
...
I need to set up a report that dynamically displays on another sheet items
from one column of a filtered range. After the advanced filter is
executed,
I may have 12 records left showing out of the 400. On sheet2 I need to
display the visible data from one of the columns, let's say in cells
A1:A12.
So this would be one of those "copy down" functions that displays the
first
item in A1, the second in A2, etc. I've been tinkering with all the
INDEX,
OFFSET, SUBTOTAL combinations, but am not quite getting it.

TIA



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:20 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.