nobbyclarke
New Member
- Joined
- Nov 25, 2015
- Messages
- 24
Hi
We use a stop card system to report safety observations. I made a small statistics excel sheet to monitor the progress of closing out those cards.
the cards have three status' open, closed or in progress within the worksheet.
On the same worksheet I want to create a second table that automatically shows the user the cards that are "open" OR in "progress".
I have been using an array formula to work this out...
=IFERROR(INDEX(B$9:B$4003, SMALL(IF($AR$1=$K$9:$K$4003, ROW($K$9:$K$4003)-MIN(ROW($K$9:$K$4003))+1, ""), ROW(A2))), "")
AR1 is the 1st criteria (open)
AR2 not in above formula is the second criteria (in progress)
I have tried to add in the second criteria by the following....
=IFERROR(INDEX(B$9:B$4003, SMALL(IF(OR($AR$1=$K$9:$K$4003,$AR$2=$K$9:$K$4003), ROW($K$9:$K$4003)-MIN(ROW($K$9:$K$4003))+1, ""), ROW(A2))), "")
however this is not working and what I get back is a stop card that is actually closed.
so the question is how can I list all the stop cards that are currently in the "open" or "in progress" state (column K)???
please help.
We use a stop card system to report safety observations. I made a small statistics excel sheet to monitor the progress of closing out those cards.
the cards have three status' open, closed or in progress within the worksheet.
On the same worksheet I want to create a second table that automatically shows the user the cards that are "open" OR in "progress".
I have been using an array formula to work this out...
=IFERROR(INDEX(B$9:B$4003, SMALL(IF($AR$1=$K$9:$K$4003, ROW($K$9:$K$4003)-MIN(ROW($K$9:$K$4003))+1, ""), ROW(A2))), "")
AR1 is the 1st criteria (open)
AR2 not in above formula is the second criteria (in progress)
I have tried to add in the second criteria by the following....
=IFERROR(INDEX(B$9:B$4003, SMALL(IF(OR($AR$1=$K$9:$K$4003,$AR$2=$K$9:$K$4003), ROW($K$9:$K$4003)-MIN(ROW($K$9:$K$4003))+1, ""), ROW(A2))), "")
however this is not working and what I get back is a stop card that is actually closed.
so the question is how can I list all the stop cards that are currently in the "open" or "in progress" state (column K)???
please help.