I am trying to track some averages during the week, and then on each weekend day. After some searching on the internet I found this forumla that worked for the M-F and Sunday but for some odd reason, Saturday is messed up. Can't figure out why.
For M-F I used
For Saturday I used
For Sunday I used
Does anyone know what I am doing wrong? I have been playing with it for hours now, and cannot get SAturday to calculate legit averages. Or is there an easier way?
Thank you!
For M-F I used
Code:
=SUM((WEEKDAY($E$2:$EE$2,2)<6)*($E4:$EE4)/SUM(1*(WEEKDAY($E$2:$EE$2,2)<6)))
For Saturday I used
Code:
=SUM((WEEKDAY($E$2:$EE$2,2)=6)*($E4:$EE4)/SUM(1*(WEEKDAY($E$2:$EE$2,2)=6)))
For Sunday I used
Code:
=SUM((WEEKDAY($E$2:$EE$2,2)=7)*($E4:$EE4)/SUM(1*(WEEKDAY($E$2:$EE$2,2)=7)))
Does anyone know what I am doing wrong? I have been playing with it for hours now, and cannot get SAturday to calculate legit averages. Or is there an easier way?
Thank you!