• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

FILTER the data

Techtrend

Member
Hi Team

Attached is the Excel and details mentioned in the doc also

A-E has data,B,C,D,E has conditions,
We should filter the A scripts as and when any data comes in B,C,D,E.

G-K has the scripts which are filtered from A-E.

Thanks for your time
Naren
 

Attachments

  • FILTERS.xls
    39.5 KB · Views: 8
A scripts are fixed there are about 90 scripts in A col ,

B,C,D,E values comes on few conditions which is already done,

Now from 90 scripts in A Col We need to filter the A Col scripts
if any of the Conditions or any value comes in B,C,D,E Col.

And publish it in G-K Col.

Let me know if you need more Clarifications.

Thanks
Naren
 
Try,

1] Helper column F, F2 formula copy down :

=IF((4-SUM(COUNTIF(B2:E2,{""," "})))>0,MAX(F$1:F1)+1,"")

2] G2 formula copy down :

=IFERROR(INDEX(A$2:A$20,MATCH(ROWS($1:1),F$2:F$20,0)),"")

3] H2 formula copy across and down :

=IF(G2="","",INDEX($B$2:$E$20,MATCH($G2,$A$2:$A$20,0),MATCH(H$1,$B$1:$E$1,0)))

Regards
Bosco
 

Attachments

  • FILTERS(1).xlsx
    18.4 KB · Views: 9
Back
Top