G
Guest3731
Hi, group!
I can't get a nested if formula to do what I want & I could use some
assistance if possible.
I've got numbers in 3 columns, E, F, G. I want to put a formula in
column H such that it shows the difference between E and the sum of F
& G (E - (F + G)). However, I want it to have a minimum (0), and a
maximum (800,000). Below is what I'm trying. I get an answer of 0 in
column H, despite having a value of 1,200,000 in column E and 100,000
in each of F & G - where I would expect a maximum value in D (800,000)
(1,200,000 - (100K +100K) = 1,000,000, but maxes out at 800,000).
Any clues?
=IF((E4-(F4+G4)>800000),800000,IF((E4-(F4+G4))>0,(E4-(F4+G4)),0))
I can't get a nested if formula to do what I want & I could use some
assistance if possible.
I've got numbers in 3 columns, E, F, G. I want to put a formula in
column H such that it shows the difference between E and the sum of F
& G (E - (F + G)). However, I want it to have a minimum (0), and a
maximum (800,000). Below is what I'm trying. I get an answer of 0 in
column H, despite having a value of 1,200,000 in column E and 100,000
in each of F & G - where I would expect a maximum value in D (800,000)
(1,200,000 - (100K +100K) = 1,000,000, but maxes out at 800,000).
Any clues?
=IF((E4-(F4+G4)>800000),800000,IF((E4-(F4+G4))>0,(E4-(F4+G4)),0))