BMcDougall
New Member
- Joined
- Apr 8, 2013
- Messages
- 4
I have a worksheet to track progress of a project I'm working on. A sample of it looks something like this:
<TBODY>
</TBODY>
What I want to do is create a totals sheet that counts cells if the zone range (A2:A10) equals 1,2, & 3 and if the range of steps (C2:E10) equals "Not Started", "In Progress", & "Complete". The sheet would look something like this:
<TBODY>
</TBODY>
I could isolate each range of cells for each zone and use a countif formula but my real sheet has 1695 cells to incorperate and the possibility of adding/removing rows. I assume I would be able to incorperate the entire range of cells into a countifs formula but cannot figure out how. Any suggestions?
Zone</SPAN> | Area</SPAN> | Step 1</SPAN> | Step 2</SPAN> | Step 3</SPAN> |
1</SPAN> | Room 1</SPAN> | Complete</SPAN> | In Progress</SPAN> | Not Started</SPAN> |
1</SPAN> | Room 2</SPAN> | Complete</SPAN> | Not Started</SPAN> | Not Started</SPAN> |
1</SPAN> | Room 3</SPAN> | Not Started</SPAN> | In Progress</SPAN> | Not Started</SPAN> |
2</SPAN> | Room 1</SPAN> | Complete</SPAN> | Complete</SPAN> | Complete</SPAN> |
2</SPAN> | Room 2</SPAN> | In Progress</SPAN> | Not Started</SPAN> | Not Started</SPAN> |
2</SPAN> | Room 3</SPAN> | Not Started</SPAN> | Not Started</SPAN> | Not Started</SPAN> |
3</SPAN> | Room 1</SPAN> | Complete</SPAN> | Complete</SPAN> | Complete</SPAN> |
3</SPAN> | Room 2</SPAN> | Complete</SPAN> | Complete</SPAN> | In Progress</SPAN> |
3</SPAN> | Room 3</SPAN> | Not Started</SPAN> | Not Started</SPAN> | Not Started</SPAN> |
<TBODY>
</TBODY>
What I want to do is create a totals sheet that counts cells if the zone range (A2:A10) equals 1,2, & 3 and if the range of steps (C2:E10) equals "Not Started", "In Progress", & "Complete". The sheet would look something like this:
Zone</SPAN> | Not Started</SPAN> | In Progress</SPAN> | Complete</SPAN> | Total % Complete</SPAN> |
1</SPAN> | 5</SPAN> | 2</SPAN> | 2</SPAN> | 22%</SPAN> |
2</SPAN> | 5</SPAN> | 1</SPAN> | 3</SPAN> | 33%</SPAN> |
3</SPAN> | 3</SPAN> | 1</SPAN> | 5</SPAN> | 56%</SPAN> |
<TBODY>
</TBODY>
I could isolate each range of cells for each zone and use a countif formula but my real sheet has 1695 cells to incorperate and the possibility of adding/removing rows. I assume I would be able to incorperate the entire range of cells into a countifs formula but cannot figure out how. Any suggestions?