If cell is positive, then multipy, if negative, then take this cell

adam1993

New Member
Joined
May 16, 2018
Messages
16
I am having trouble finding the right formula to use in excel when it comes to the value showing in a certain cell:confused:. I am running into the problem in cell C. For example, cell C_ is positive, I then want cell E_ to equal C_ x D_, if it is negative, I want it to equal D_. (Note: I would like to input this cell into a whole column to continue to do the math for me)

The same issue in reverse which might be the same formula. If cell C_ is negative, then E_ equals D_, but if C_ is positive, then F_ equals D_.

Basically I have either a positive or negative value in cell C, cell D is a dollar amount, cell E is a dollar amount and cell F is a dollar amount as shown below. I am looking for 2 separate formulas (I think). One for Column E and One for Column F that will take into account if C is positive of negative first, if positive then do this, if negative, then do this.

-1.10
50
E
F
1.27
50
E
F
1.95
50
E
F
-1.52
50
E
F

<tbody>
</tbody>
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hi,

What happens in F if C is negative?


Book1
CDEF
1-1.15050 
21.275063.550
31.955097.550
4-1.525050
Sheet50
Cell Formulas
RangeFormula
E1=IF($C1<=0,$D1,$C1*$D1)
F1=IF($C1<=0,"",$D1)
 
Upvote 0
Assuming that -1.10 is in column A and 50 is in column B, try the following:

Type into cell E1
=IF(C6<0,D6)

Type into cell F1
=IF(C6>=0,C6*D6)

If you want to reduce the number of columns you have, you could delete column F and simply type the following into column E
=IF(C1>=0,C1*D1,D1)
With this method, the cell will display FALSE if the condition is not met.

Then all you have to do is drag the cell's fill handle or double click the fill handle for all the cells in that column to use the formula.
 
Upvote 0

Forum statistics

Threads
1,215,444
Messages
6,124,892
Members
449,194
Latest member
JayEggleton

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top