Hello, I'm a homeschooling mom and I have put my son's weekly schedule in Excel with dingbat checkboxes next to each task so I can check things off as he does them. I have also made a pie graph so he can see how much he has to do and see the "done" piece getting bigger and bigger as the day goes by. Every day there are several formulas that I have to change so that they are current for whatever day we are on.
To count whether or not we have done a particular item, I have: =IF(OR(I83=$C$1,I83=$E$1,I83="",I83=$I$1),0,1) where (for Thursday) I83 is the cell next to the assigned subject, $C$1, $E$1, & $I$1 are 3 dingbat possibilities showing "done" for both my son and daughter (a check in the box), just my son (a 1 in the box), "" for empty boxes, or N/A (box with a line through it) if it's something I feel he's already done/learned and doesn't need review/doesn't need to do. So the result shows 0 if it's done, 1 if it's not, the pie shows the 1's as individual pie slices, and the zeros get added to the ever-growing "done" slice.
The other formula that I have to update every day is: =COUNTIF(I83:I96,$I$1)+COUNTIF(I83:I96,"") where I83:I96 is all of the checkbox cells for the whole day for my son, $I$1 is the N/A box, and "" is for empty cells. The result from this formula is subtracted from the total number of zeros from the previous formula so that the pie chart doesn't show a pie slice for empty or N/A cells, they are just added in to the "done" slice.
So now my question... If I have another cell off to the side which is =today() formatted custom ddddd so that the date shows as the current day of the week, can I amend these formulas so that I don't have to adjust them each day, but they will auto update (and if so how)? I'm not an expert by ANY means, but I was thinking there had to be a way to do something along the line of a nested =if(Q83="Monday",... ,if(Q83="Tuesday",...etc.)) so that the first formula would automatically return a result for:
Monday: =IF(OR(C83=$C$1,C83=$E$1,C83="",C83=$I$1),0,1)
Tuesday: =IF(OR(E83=$C$1,E83=$E$1,E83="",E83=$I$1),0,1)
Wednesday: =IF(OR(G83=$C$1,G83=$E$1,G83="",G83=$I$1),0,1)
Thursday: =IF(OR(I83=$C$1,I83=$E$1,I83="",I83=$I$1),0,1)
Friday: =IF(OR(K83=$C$1,K83=$E$1,K83="",K83=$I$1),0,1)
And for the 2nd formula, it would automatically return for:
Monday: =COUNTIF(C83:I96,$I$1)+COUNTIF(C83:I96,"")
Tuesday: =COUNTIF(E83:I96,$I$1)+COUNTIF(E83:I96,"")
Wednesday: =COUNTIF(G83:I96,$I$1)+COUNTIF(G83:I96,"")
Thursday: =COUNTIF(I83:I96,$I$1)+COUNTIF(I83:I96,"")
Friday: =COUNTIF(K83:I96,$I$1)+COUNTIF(K83:I96,"")
I hope that's not too confusing.
To count whether or not we have done a particular item, I have: =IF(OR(I83=$C$1,I83=$E$1,I83="",I83=$I$1),0,1) where (for Thursday) I83 is the cell next to the assigned subject, $C$1, $E$1, & $I$1 are 3 dingbat possibilities showing "done" for both my son and daughter (a check in the box), just my son (a 1 in the box), "" for empty boxes, or N/A (box with a line through it) if it's something I feel he's already done/learned and doesn't need review/doesn't need to do. So the result shows 0 if it's done, 1 if it's not, the pie shows the 1's as individual pie slices, and the zeros get added to the ever-growing "done" slice.
The other formula that I have to update every day is: =COUNTIF(I83:I96,$I$1)+COUNTIF(I83:I96,"") where I83:I96 is all of the checkbox cells for the whole day for my son, $I$1 is the N/A box, and "" is for empty cells. The result from this formula is subtracted from the total number of zeros from the previous formula so that the pie chart doesn't show a pie slice for empty or N/A cells, they are just added in to the "done" slice.
So now my question... If I have another cell off to the side which is =today() formatted custom ddddd so that the date shows as the current day of the week, can I amend these formulas so that I don't have to adjust them each day, but they will auto update (and if so how)? I'm not an expert by ANY means, but I was thinking there had to be a way to do something along the line of a nested =if(Q83="Monday",... ,if(Q83="Tuesday",...etc.)) so that the first formula would automatically return a result for:
Monday: =IF(OR(C83=$C$1,C83=$E$1,C83="",C83=$I$1),0,1)
Tuesday: =IF(OR(E83=$C$1,E83=$E$1,E83="",E83=$I$1),0,1)
Wednesday: =IF(OR(G83=$C$1,G83=$E$1,G83="",G83=$I$1),0,1)
Thursday: =IF(OR(I83=$C$1,I83=$E$1,I83="",I83=$I$1),0,1)
Friday: =IF(OR(K83=$C$1,K83=$E$1,K83="",K83=$I$1),0,1)
And for the 2nd formula, it would automatically return for:
Monday: =COUNTIF(C83:I96,$I$1)+COUNTIF(C83:I96,"")
Tuesday: =COUNTIF(E83:I96,$I$1)+COUNTIF(E83:I96,"")
Wednesday: =COUNTIF(G83:I96,$I$1)+COUNTIF(G83:I96,"")
Thursday: =COUNTIF(I83:I96,$I$1)+COUNTIF(I83:I96,"")
Friday: =COUNTIF(K83:I96,$I$1)+COUNTIF(K83:I96,"")
I hope that's not too confusing.