Ifs / if(and

greenfortyguy

New Member
Joined
Sep 7, 2017
Messages
13
Hello,

I am trying to write a formula that will perform the following function, and drag down a column:


  • IF the value in column K is <0, the value in the same row of column I is the equivalent positive.
  • The values in column I remain as a maximum.

This is an example of the result I'm looking for:


[TABLE="width: 365"]
<colgroup><col span="2" style="text-align: center;"><col style="text-align: center;"></colgroup><tbody>[TR]
[TD="align: center"]I[/TD]
[TD="align: center"]J[/TD]
[TD="align: center"]K[/TD]
[/TR]
[TR]
[TD="align: center"]0[/TD]
[TD="align: center"]25,034[/TD]
[TD="align: center"]4,966[/TD]
[/TR]
[TR]
[TD="align: center"]0[/TD]
[TD="align: center"]24,991[/TD]
[TD="align: center"]5,009[/TD]
[/TR]
[TR]
[TD="align: center"]0[/TD]
[TD="align: center"]24,946[/TD]
[TD="align: center"]5,054[/TD]
[/TR]
[TR]
[TD="align: center"]0[/TD]
[TD="align: center"]24,873[/TD]
[TD="align: center"]5,127[/TD]
[/TR]
[TR]
[TD="align: center"]0[/TD]
[TD="align: center"]24,820[/TD]
[TD="align: center"]5,180[/TD]
[/TR]
[TR]
[TD="align: center"]3682[/TD]
[TD="align: center"]30,000[/TD]
[TD="align: center"]-3,682[/TD]
[/TR]
[TR]
[TD="align: center"]3682[/TD]
[TD="align: center"]33,628[/TD]
[TD="align: center"]-3,628[/TD]
[/TR]
[TR]
[TD="align: center"]3682[/TD]
[TD="align: center"]33,561[/TD]
[TD="align: center"]67[/TD]
[/TR]
[TR]
[TD="align: center"]3682[/TD]
[TD="align: center"]33,495[/TD]
[TD="align: center"]133[/TD]
[/TR]
[TR]
[TD="align: center"]3682[/TD]
[TD="align: center"]29,759[/TD]
[TD="align: center"]187[/TD]
[/TR]
[TR]
[TD="align: center"]3682[/TD]
[TD="align: center"]29,700[/TD]
[TD="align: center"]246[/TD]
[/TR]
</tbody>[/TABLE]

Thanks,

Guy
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Not sure what this means:
  • The values in column I remain as a maximum.
Where are the zeroes in the other rows coming from?

If you just want it to either be the opposite of column K if column K is negative, and 0 otherwise, then try this in cell I2:
Code:
=IF(K2<0,0-K2,0)
 
Last edited:
Upvote 0
Hi Joe,

What I meant was, if a value appears in column I as a result of the value in column K being negative, that value remains in all the cells below even if the values in column K are positive.

i.e. in my example,
  • the first negative value in column K is -3,682. As a result, +3,682 appears in column I.
  • the next value in column K is -3,628. However, -3,682 remains the value in column I.
  • the next value in column K is +67. -3,682 remains in column I.

This would continue, unless a more negative value than -3,682 appeared in column K. If this were to happen, that value would then be repeated.

Thanks,

Guy

EDIT: The zeros are coming as the result of a potential use of the formula =IF(K2<0, -K2, 0), which is essentially the formula you stated.
 
Last edited:
Upvote 0
Assuming that your data starts on row 2, enter this in I2 and copy down for all rows:
Code:
=0-MIN(0,$K$2:K2)
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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