guys, I'm trying to do some crazy things in Google Sheets and I'm getting in trouble. Can someone help me? I have this sheet with tasks and subtasks. Each subtask has a status (done, in progress or not stated)What I want to do is set one progress for task depending on its subtasks. This way:
try separately for A column with those merged cells:
=REGEXMATCH(TEXTJOIN(" ", 1, C:C), "Not Started")*(B:B<>"")
=REGEXMATCH(TEXTJOIN(" ", 1, C:C), "In Progress")*(B:B<>"")
=REGEXMATCH(TEXTJOIN(" ", 1, C:C), "Done")*(B:B<>"")