hi
i have a row of cells (60 columns, D through BK) and each of these cells has a calculated value populating it.
in another row, I want to add 1 to the cell corresponding to the cell above every time the sum of cells going left to right increases by 2000.
For. eg.
Values in row:
D2 = 2500
E2 = 3500
G2 = 4800
H2 = 5600
I2 = 6800
J2 = 8300
K2 = 9900
L2 = 12000
M2 = 16000
and so forth
In the cells below, I want a formula that can calculate and populate cells as below:
D3 = 1
E3 = 0
G3 = 1
H3 = 0
I3 = 1
J3 = 1
K3 = 1
L3 = 2
M3 = 2
I have a formula that I can use - nested IF statements but it gets very very long very very fast.
Any help will be greatly appreciated