Hi.
I am trying to make some cells perform some calculations and am running into a snag.
I have three cells..each represent a term (e.g. Fall, Winter, Spring). Within each of the cells, I created three drop-down choices (i.e. "Proficient", "In Process" and "Not Yet"). "Proficient" has a value of 3, "In Process" = 2, and "Not Yet" = 1. In nearby cells, I need to calcuate the percentage of total for each of the three terms, based on the entry. For instance, if someone selects "Not Yet" in cell A1, the value in the other cell (e.g. A4) should be 1 divided by the total possible, which is 3 in that cell. Thus, A4 should show 33%. I need to do that for each of the three term cells (i.e. A1, A2, and A3) in A4, A5 and A6, respectively. Finally, I need a cell (A7) that calculates the total percentage across the three percentage cells. Given that the highest ranking (i.e. "Proficient") carries a value of 3, the total possible points for all three cells would be 9.
The trick is...if there is nothing selected in one, or two of the three entry cells, I need the total cell to ignore any empty cells (of the three) and only calculate if there are entries.
This is what i did for the cells that calculate the percentage based on what is selected from the drop down list (i.e. cell A4)
=IF(A1="Proficient",3,IF(A1="In Process",2,IF(A1="Not Yet",1,"")))/3
I have that set up for cells A2 and A3. Unfortunately, if one of those cells has no selection, I get a #VALUE instead of a blank cell.
I hope all this makes sense. The bottom line is that any cells that have no entries should result in an blank computation cell.
Thanks in advance folks.
I am trying to make some cells perform some calculations and am running into a snag.
I have three cells..each represent a term (e.g. Fall, Winter, Spring). Within each of the cells, I created three drop-down choices (i.e. "Proficient", "In Process" and "Not Yet"). "Proficient" has a value of 3, "In Process" = 2, and "Not Yet" = 1. In nearby cells, I need to calcuate the percentage of total for each of the three terms, based on the entry. For instance, if someone selects "Not Yet" in cell A1, the value in the other cell (e.g. A4) should be 1 divided by the total possible, which is 3 in that cell. Thus, A4 should show 33%. I need to do that for each of the three term cells (i.e. A1, A2, and A3) in A4, A5 and A6, respectively. Finally, I need a cell (A7) that calculates the total percentage across the three percentage cells. Given that the highest ranking (i.e. "Proficient") carries a value of 3, the total possible points for all three cells would be 9.
The trick is...if there is nothing selected in one, or two of the three entry cells, I need the total cell to ignore any empty cells (of the three) and only calculate if there are entries.
This is what i did for the cells that calculate the percentage based on what is selected from the drop down list (i.e. cell A4)
=IF(A1="Proficient",3,IF(A1="In Process",2,IF(A1="Not Yet",1,"")))/3
I have that set up for cells A2 and A3. Unfortunately, if one of those cells has no selection, I get a #VALUE instead of a blank cell.
I hope all this makes sense. The bottom line is that any cells that have no entries should result in an blank computation cell.
Thanks in advance folks.