Reputation: 435
How do I combine those highlighted cells in one column? The highlighted cell is based one rule condition that contains a slash.
Upvotes: 0
Views: 49
Reputation: 1
try:
=INDEX(TRIM(FLATTEN(QUERY(TRANSPOSE(IF(REGEXMATCH(B:F; "\/"); B:F; ));;9^9))))
Upvotes: 1
Reputation: 36780
Try below formula-
=BYROW(B1:INDEX(F:F,INDEX(MAX((IF(B:F<>"",ROW(B:F),0))))),LAMBDA(x,JOIN(", ",FILTER(x,INDEX(ISNUMBER(SEARCH("/",x)))))))
Upvotes: 2