Auto-copy rows from one tab to another based on cell value
Closed
Marissa Garrock
-
Aug 16, 2016 at 10:31 PM
fdibbins Posts 33 Registration date Sunday June 19, 2016 Status Contributor Last seen November 20, 2016 - Aug 16, 2016 at 10:58 PM
fdibbins Posts 33 Registration date Sunday June 19, 2016 Status Contributor Last seen November 20, 2016 - Aug 16, 2016 at 10:58 PM
Related:
- Auto-copy rows from one tab to another based on cell value
- Grand theft auto v free download no verification for pc - Download - Action and adventure
- How to stop facebook from auto refreshing - Guide
- Grand theft auto iv download apk for pc - Download - Action and adventure
- How to set auto redial on android - Guide
- Op auto clicker download - Download - Mouse and keyboard
1 response
fdibbins
Posts
33
Registration date
Sunday June 19, 2016
Status
Contributor
Last seen
November 20, 2016
1
Aug 16, 2016 at 10:58 PM
Aug 16, 2016 at 10:58 PM
1 way would be to use filters to just show the rows with X in them.
Home tab/Editing (at the end)/Sort and Filter/Filter.
You will then see a bunch of drop-down arrows at the top of each column, click the 1 showing X's and uncheck BLANK
This will show on that same sheet, only those rows with X's. To get all the data back, repeat the process and check ALL
Another way (hopefully the copy comes out OK...
Your data
Your extract...
E2=IFERROR(INDEX(A:A,SMALL(IF($A$2:$A$13="x",ROW($A$2:$A$13)),ROWS($A$1:A1))),"")
ARRAY entered using CTRL SHIFT ENTER, not just enter
Then copy down and across
Home tab/Editing (at the end)/Sort and Filter/Filter.
You will then see a bunch of drop-down arrows at the top of each column, click the 1 showing X's and uncheck BLANK
This will show on that same sheet, only those rows with X's. To get all the data back, repeat the process and check ALL
Another way (hopefully the copy comes out OK...
Your data
H1 H2 H3
x aa 10
bb 20
cc 30
c dd 40
aa 50
x bb 60
cc 70
dd 80
aa 90
x bb 100
x cc 110
dd 120
Your extract...
H1 H2 H3
x aa 10
x bb 60
x bb 100
x cc 110
E2=IFERROR(INDEX(A:A,SMALL(IF($A$2:$A$13="x",ROW($A$2:$A$13)),ROWS($A$1:A1))),"")
ARRAY entered using CTRL SHIFT ENTER, not just enter
Then copy down and across