I am having an issue with a formula that I believe to be a bug.
=LEFT(JOIN(COLLECT($C:$C,$Created:$Created, NETDAYS(@cell, TODAY()) <= IF(WEEKDAY(TODAY()) = 7, 2, IF(WEEKDAY(TODAY()) = 6, 1, WEEKDAY(TODAY()) + 2)), $A:$A, $[Work Description]@row)))
Does not work, it propogates an error in the cell. If I rearrange the inputs inside of the collect it seems to work though.
=LEFT(JOIN(COLLECT($C:$C, $A:$A, $[Work Description]@row, $Created:$Created, NETDAYS(@cell, TODAY()) <= IF(WEEKDAY(TODAY()) = 7, 2, IF(WEEKDAY(TODAY()) = 6, 1, WEEKDAY(TODAY()) + 2)))))
To me there shouldn't be any difference between the two formulas. I obviously have a solution that works, but it is causing me to have to do quite a bit of transcribing formulas from the one to the other formula for unexpected behaviour