LN
I want to combine text with the JOIN formula. Text to be combined has the following criteria:
# If B2 = C2, then JOIN(", ", A2, B2, D2)
# If B2 <> C2, then JOIN(", ", A2, B2, C2, D2)When written in the finished formula like this:=IF(B2=C2,JOIN(", ",A2,B2,D2),JOIN(", ",A2,B2,C2,D2))I want to change the join formula into the array but the results are messy. =ARRAYFORMULA(IF(B2:B=C2:C,JOIN(", ",A2:A,B2:B,D2:D),JOIN(", ",A2:A,B2:B,C2:C,D2:D)))Please correct it.
