If cell B2<B1 answer in A2 must be 0 and if cell B2>B1 answer in A2 must be equal to B1
M MAX Feb 20, 2009 #1 If cell B2<B1 answer in A2 must be 0 and if cell B2>B1 answer in A2 must be equal to B1
N Niek Otten Feb 20, 2009 #2 In A2: =IF(B2<B1,0,B1) But what if B2 = B1? Please be always very specific with >, < >=, <=, etc
D David Biddulph Feb 20, 2009 #3 =IF(B2<B1,0,IF(B2>B1,B1,"I haven't a clue what answer is required if B2=B1, so I haven't specfied it"))
=IF(B2<B1,0,IF(B2>B1,B1,"I haven't a clue what answer is required if B2=B1, so I haven't specfied it"))