Hello all,
I need to Join the content of a Task column into one main cell in another column "Description".
The conditions are: IF [Task] at row CONTAINS "Action Item" and Summary Field is unchecked than JOIN all the text separated by a comma (or even better assign a number to each of the tasks that contain "Action Item").
My attempted formula:
=IF(AND(CONTAINS("Action", Task@row ), [Summary Field]@row = 0), JOIN(Task:Task, " , "), "")
I cannot share screen shots