I am using a formula to change the value of one cells based on the values of some cells below it in a column. The formula that I'm using is working but I want to add it to some more places in the sheet, where it would get very long. Does anyone know a way I could abbreviate this?
It is okay when there are only two cells that I am basing the value off.
E.g. =IF(AND(OR(Status6 = "Complete", Status6 = "N/A"), OR(Status7 = "Complete", Status7 = "N/A")), "Complete")
But it gets much longer when there are 6+ cells.
E.g. =IF(AND(OR(Status9 = "Complete", Status9 = "N/A"), OR(Status10 = "Complete", Status10 = "N/A"), OR(Status11 = "Complete", Status11 = "N/A"), OR(Status12 = "Complete", Status12 = "N/A"), OR(Status13 = "Complete", Status13 = "N/A"), OR(Status14 = "Complete", Status14 = "N/A"), OR(Status15 = "Complete", Status15 = "N/A")), "Complete")