Hi all,
Not sure if what I'm looking to do is possible or not.
I have 2 columns M & N that populate based on another columns content.
I then have 2 cells that do a TextJoin on the relevant column, J15 does a TextJoin for Column M & J17 for N
What I'm wondering is, Is itpossible to Concatentate/TextJoin using a different delimiter between 2nd Last and Last entry in either Excel or Google Sheets.
So in the sample provided below is it possible to have J15 return Area 1, Area 2 & Area 3 and J7 to return Area 4 & Area 5
Thanks for looking
Not sure if what I'm looking to do is possible or not.
I have 2 columns M & N that populate based on another columns content.
I then have 2 cells that do a TextJoin on the relevant column, J15 does a TextJoin for Column M & J17 for N
What I'm wondering is, Is itpossible to Concatentate/TextJoin using a different delimiter between 2nd Last and Last entry in either Excel or Google Sheets.
So in the sample provided below is it possible to have J15 return Area 1, Area 2 & Area 3 and J7 to return Area 4 & Area 5
Board-Sample.xlsx | |||||||
---|---|---|---|---|---|---|---|
J | K | L | M | N | |||
13 | NOTES | High | Moderate | ||||
14 | HIGH | ||||||
15 | Area 1, Area 2, Area 3, | Area 1, | |||||
16 | MODERATE | ||||||
17 | Area 4, Area 5, | Area 2, | |||||
18 | |||||||
19 | Area 3, | ||||||
20 | |||||||
21 | Area 4, | ||||||
22 | |||||||
23 | Area 5, | ||||||
24 | |||||||
25 | |||||||
Report-1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
M14,M16,M18,M20,M22,M24 | M14 | =IFNA(IF(G14="HIGH",CONCATENATE("Area ", A14,","), ""),"") |
N14,N16,N18,N20,N22,N24 | N14 | =IFNA(IF(G14="MODERATE",CONCATENATE("Area ", A14,","), ""),"") |
M15,M17,M19,M21,M23,M25 | M15 | =IFNA(IF(G15="HIGH",CONCATENATE("Area ", A14,","), ""),"") |
N15,N17,N19,N21,N23,N25 | N15 | =IFNA(IF(G15="MODERATE",CONCATENATE("Area ", A14,","), ""),"") |
J15 | J15 | =TEXTJOIN(" ", TRUE, M14:M53) |
J17 | J17 | =TEXTJOIN(" ", TRUE, N14:N53) |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
M14:N73 | Expression | =AND(COUNTIF($M$14:$N$43,M14)>1,$N14<>"") | text | NO |
Thanks for looking