I have multiple columns that depend on this formula.
I have instances were an employee can have multiple assignments for the same Project and I use the formula to consolidate the rows and add the value that causes an extra row in the corresponding row:
I first perform a = Unique(A3:D)
to extract the list and then:
=IF($A3<>"",join(", ",filter(Sheet1!E$3:E,Sheet1!$A$3:$A=$G3)),"")
How can I make this an ArrayFormula? I tried it like this but the result is incorrect:
=arrayformula(IF($A2:A<>"",join(", ",filter(Sheet1!E$2:E,Sheet1!$A$2:$A=$G2:G)),""))
Here's an example spreadsheet: https://docs.google.com/spreadsheets/d/1cLXNidk6FSZbUeU0CK3XlMPWdpBMbnKMXC5gzTfMvY0/edit?usp=sharing