Hello, I am trying to find a way to filter column D if column H or column J match with text value in cell N1 or Q1, etc. and also to combine the text from columns I and K based on same criteria.
For example, on column Q, from cell Q3, the result would include, Khights, Wednesday Welcome(that match with colum H) and Bloco(that matches with column J). In column T it would show Bloco, Education and Kurling.
For the textjoin, On cell Y3 the results would be Nationaly, 2 Lead artists full time, Winter TBC
Any help is welcomed.
Thank you
For example, on column Q, from cell Q3, the result would include, Khights, Wednesday Welcome(that match with colum H) and Bloco(that matches with column J). In column T it would show Bloco, Education and Kurling.
For the textjoin, On cell Y3 the results would be Nationaly, 2 Lead artists full time, Winter TBC
Any help is welcomed.
Thank you
Book4 | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | |||
1 | Reference | Date [Happening] | Arrangement Reference | Description | Manager | Customer | Local Authority | Activity Outcome (NPO) | Activity Outcome Notes | Sub-Activity Outcome (NPO) | Sub-Activity Outcome Notes | No Outcome details | Act.1 - Young Artist Dev | Act.2 - Artist Dev | Act.3 - Children in/out of school | ||||||||||||
2 | 3827 | 4/1/24 | KNI001 | Knights | Act.1 - Young Artist Dev | 30 YP outstanding performance | Act.3 - Children in/out of school | Activity | No of Activities | Notes | Activity | No of Activities | Notes | Activity | No of Activities | Notes | Activity | No of Activities | Notes | ||||||||
3 | 354 | 4/1/24 | 25 | Monthly Meeting | to be developed further | Monthly Meeting | 1 | to be developed further | Knights | 1 | 30 YP outstanding performance | Bloco | 2 | Education | 2 | nationaly, 2 Lead artists full time | |||||||||||
4 | 2131 | 4/2/24 | 166 | Bloco | Act.2 - Artist Dev | reaching all goals | Act.1 - Young Artist Dev | 9 Extra trainning sessions | 0 | 0 | Wednesday Welcome | 1 | 0 | Kurling | 1 | to be developed further | |||||||||||
5 | 2132 | 4/2/24 | 166 | Bloco | Act.2 - Artist Dev | Act.1 - Young Artist Dev | 0 | 0 | 0 | 0 | |||||||||||||||||
6 | 2682 | 4/3/24 | 392 | Wednesday Welcome | Act.1 - Young Artist Dev | Act.3 - Children in/out of school | summer progeramme developed | 0 | 0 | 0 | 0 | ||||||||||||||||
7 | 3404 | 4/3/24 | 526 | Education | Act.3 - Children in/out of school | nationaly | Act.2 - Artist Dev | ||||||||||||||||||||
8 | 2935 | 4/4/24 | 388 | Kurling | Act.3 - Children in/out of school | to be developed further | Act.2 - Artist Dev | ||||||||||||||||||||
9 | 3404 | 4/10/24 | 526 | Education | Act.3 - Children in/out of school | 2 Lead artists full time | Act.2 - Artist Dev | Winter TBC | |||||||||||||||||||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
N3:N4 | N3 | =IFERROR(UNIQUE(FILTER($D:$D,$H:$H=0)),"None") |
U3:U6,R3:R6,O3:O6,X3:X6 | O3 | =COUNTIF($D:$D,N3) |
P3:P6 | P3 | =TEXTJOIN(", ",TRUE,IF((D:D=N3)*(I:I<>0),I:I,"")) |
Q3:Q4,W3:W4,T3 | Q3 | =IFERROR(UNIQUE(FILTER($D:$D,$H:$H=Q1)),"None") |
S3:S6,Y3:Y6 | S3 | =TEXTJOIN(", ",TRUE,IF(($D:$D=Q3)*($I:$I<>0),$I:$I,"")) |
V3:V6 | V3 | =TEXTJOIN(", ",TRUE,IF((G:G=T3)*(L:L<>0),L:L,"")) |
Dynamic array formulas. |