I have a TODO list in excel where all tasks are categorized and have a unique ID (1.1, 1.2, 2.1, etc.). Some tasks require one or more other tasks to be completed (ie. 1.4 can only start when 1.1, 1.2, 1.3 and 2.5 are completed). The user can add his own criteria as to which tasks must be finished. This can be any combination of tasks.
Table information:
Column A - ID (1.1; 1.2; 2.1; 2.2)
Column H - Status (where "V" represents the checked symbol, meaning it is finished)
Column K - Pre-condition (user input like "3.1, 2.1, 4.5" as one text value)
I want to test each ID in the cell (which can be none to infinite) and it's corresponding status and format the cells if all tasks written in the cell are completed.
Does anyone know a good way to do this?
The picture shows a summary of the the tasklist. you see that in row 5 (ID 1.2) the cell in column K is green because the stated ID was completed. Row 27 (ID 3.2) should show a green value when both task 2.3 and 3.1 are completed (aka have a "V" in column H. The amount of pre-conditions may vary per task.