how do I write this formula?

D

djarcadian

cell1+cell2<cell3 then (cell1+cell2) X 0.062
cell1+cell2>cell3 then (cell3-cell1) X 0.062


How would I write this formula
 
D

djarcadian

I just realized that if cell1 is greater than cell3 then the results
should be zero. How would I account for that?
 
M

MrShorty

Nest the above IF function inside of a another IF function
=IF(cell1>cell3,0,IF(...)) Note that Excel is limited to 7 neste
IF's, so if your decision tree has many more branches to it, you'l
need to come up with another approach
 
Top