I am want to figure out the formula to average the weekly weight when the cells contain the day(as text) and the weight would entered after it. Below is an example: [TABLE="border: 0, cellpadding: 0, cellspacing: 0, width: 905"]
Sunday/238.4
[/td]Monday/236.4
[/td]Tuesday/236.6
[/td]Wednesday/235.6
[/td]Thursday/236.0
[/td]Friday/239.0
[/td]Saturday/
[/td]
[/TABLE]
I would also like for it to show the average even is some of the weight has not been entered on some of the days. The weight will always be the last 5 characters counting the decimal point.
I did come up with the following but i was hoping for something simpler and also be able to show avg even when a weight was not yet entered.
=AVERAGE(VALUE(RIGHT(B3,5)),RIGHT(D3,5),RIGHT(C3,5),RIGHT(E3,5),RIGHT(F3,5),RIGHT(G3,5),RIGHT(H3,5))
Thanks for your help.