Hello:
I have an array formula that I am trying to modify and I can't get it to work correctly. I'm not sure what I am doing wrong.
I have a scroll bar on a previous worksheet that will enable the user to select if a project is completed or not.
Example:
<tbody>
</tbody>
Cell B32 is for the scroll bar.
<tbody>
</tbody>
The array formula that I am using for C32 is - {=IF(ISERROR(INDEX($B$2:$C$26,SMALL(IF($B$2:$B$26=$B$32,ROW($B$2:$B$26)),ROW(2:2)),2)),"",INDEX($B$2:$C$26,SMALL(IF($B$2:$B$26=$B$32,ROW($B$2:$B$26)),ROW(2:2)),2))}
The problem that I found is that the formula is not finding the first 2 rows - (Steps 1.1 & 1.2). It skips them and goes to step 1.3.
Any help to fix this problem would be appreciated.
Thanks!
I have an array formula that I am trying to modify and I can't get it to work correctly. I'm not sure what I am doing wrong.
I have a scroll bar on a previous worksheet that will enable the user to select if a project is completed or not.
Example:
On Going Activities (Cell B2) | ||
Status (Cell B3) | Task (Cell C3) | Step (D3) |
Completed | Receive Drawings from Engineering | 1.1 |
Completed | Meet with planning dept for build schedule | 1.2 |
Completed | Determine which suppliers to quote package | 1.3 |
Completed | Prepare quotation package to send to suppliers | 2.1 |
<tbody>
</tbody>
Cell B32 is for the scroll bar.
Completed (B32) | Determine which suppliers to quote package (C32) | 1.3 (D32) |
Prepare quotation package to send to suppliers (C33) | 2.1 (D33) |
<tbody>
</tbody>
The array formula that I am using for C32 is - {=IF(ISERROR(INDEX($B$2:$C$26,SMALL(IF($B$2:$B$26=$B$32,ROW($B$2:$B$26)),ROW(2:2)),2)),"",INDEX($B$2:$C$26,SMALL(IF($B$2:$B$26=$B$32,ROW($B$2:$B$26)),ROW(2:2)),2))}
The problem that I found is that the formula is not finding the first 2 rows - (Steps 1.1 & 1.2). It skips them and goes to step 1.3.
Any help to fix this problem would be appreciated.
Thanks!