Formula Help - adding "x" to a value if true

ksquared

New Member
Joined
Apr 29, 2004
Messages
20
Hi,

I need help with a formula.

I need to modify cells in a colume depending on the cell value. If the cell contents is > or = to 75.00 or if it = 0.00, nothing needs to change. But if the cell contents is < 75.00 but > 0.00 I need to add 5.00 to the contents.

-------------------------------------------------

If the contents of a cell is > or = 75.00, do nothing (contents of C2 remains unchanged.)
But if the contents of cell C2 is < 75.00 but > 0.00, add 5.00 to the contents and store the new value in the cell.

Cell___Value before___Value afterwards
c2______75.00___________75.00
c3______50.00___________55.00
c4______0.00____________0.00

I hope that this is something someone can help me with and something an excell formula can do.

Thanks in advance.

K2
 
Last edited:

Excel Facts

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

I need help with a formula.

I need to modify cells in a colume depending on the cell value. If the cell contents is > or = to 75.00 or if it = 0.00, nothing needs to change. But if the cell contents is < 75.00 but > 0.00 I need to add 5.00 to the contents.

-------------------------------------------------

If the contents of a cell is > or = 75.00, do nothing (contents of C2 remains unchanged.)
But if the contents of cell C2 is < 75.00 but > 0.00, add 5.00 to the contents and store the new value in the cell.

Cell___Value before___Value afterwards
c2______75.00___________75.00
c3______50.00___________55.00
c4______0.00____________0.00

I hope that this is something someone can help me with and something an excell formula can do.

Thanks in advance.

K2
You would have to enter the formula in another cell, say cell D2.

Enter this formula in D2 and copy down as needed:

=C2+(AND(C2>0,C2<75)*5)
 
Upvote 0

Forum statistics

Threads
1,224,603
Messages
6,179,853
Members
452,948
Latest member
UsmanAli786

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