can anyone tell me what is wrong with this formula :
=IF((+I38-732)*(13.8/100)<0,"0.00"),IF((+I38-732)*(13.8/100)>0,)
what I'm trying to achieve is that if the answer is <0 then put 0.00 but if it's > than 0 then put the actual figure it is. any help much appreciated.
Comments
Remove the bracket after "0.00" and enter a true and false value at the end of the second 'IF' function. You've closed off the first IF function without a false value or the nesting of another IF.
I think. Haven't done Excel in a while.
Edit: Explanation is that the formula is =IF(Test, what happens if test is true, what happens if test is false).
So your test is (+I38-732)*(13.8/100)<0
If the test is true you want "0.00" but you should probably just change this to 0.
If the test is false you want the result (+I38-732)*(13.8/100)
So just plug them in.
= IF((+I38-732)*(13.8/100)<0,0,(+I38-732)*(13.8/100))
=if(I38-732<0,0,(I38-732)*0.138) would work just as well
Thanks for bringing it up, reminded me to change the calcs to 732 from 719 in the forecast I'm reforecasting!
Agree with Huskaris for a change. If you are hard-coding numbers, use a calculator.
where cell H24 is 3,500.00 I want cell I24 to display 2,500.00 as the answer, which it is so doing but on auto summing Column I it is not including the sum of I24 in the column total, why?
=IF((+H24)*(80/100)>=2500,"2,500.00",(+H24)*80/100)
any help appreciated ..
Just take out the quotations and it should work
=IF((+H24)*(80/100)>=2500,2500,(+H24)*80/100)
he is the Southall to the mysterious Nimer over in Bermuda.