I am making a "biggest loser" spreadsheet where I have the starting weight in B3, cells C3-M3 will have the weigh ins with each week. In cell N3 I have the total loss. I would like the total loss to show correctly with each week.
Ex: start weight is 150, the first weigh in is 149 - total loss should say 1.
The problem I am running into is keeping the total running per week. I attempted an =IF formula, but it does not seem to work after the second week. I posted the formula I attempted below. If this is the right way to go about it, but I am not using the right cells/functions please let me know. If another (or simpler) formula will work out better- I am open to ANY ideas!
Here is my initial failed formula:
=IF(C3>0,B3-C3,0)*IF(D3<C3,B3-D3,B3-C3)*IF(E3<D3,B3-E3,B3-D3)*IF(F3<E3,B3-F3,B3-E3)*IF(G3<F3,B3-G3,B3-F3)*IF(H3<G3,B3-H3,B3-G3)*IF(I3<H3,B3-I3,B3-H3)*IF(J3<I3,B3-J3,B3-I3)*IF(K3<J3,B3-K3,B3-J3)*IF(L3<K3,B3-L3,B3-K3)*IF(M3<L3,B3-M3,B3-L3)
Thank you in advance!
Bookmarks