Formula for changing a column based on results in another column

marcidee

Board Regular
Joined
May 23, 2016
Messages
184
Office Version
  1. 2019
Can someone help with a formula o script - I have present handicaps in column AP - based on whether their present handicap is 16 and over or 16 and below - I need the following to happen based n results in column AU:


if a number in column AU is higher than 70
Present handicap over 16 (column AP) - decrease by 4
Present handicap under 16 (column AP) - decrease by 2


if a number in column AU is less than 30
Present handicap over 16 (column AP)- increase by 4
Present handicap under 16 (column AP) - increase by 2

All rows with a result between 31 an 69 between nothing happens and the handicap in column AP doesn't change

Your help would be very much appreciated

Marc
 
Last edited:
Re: Formuala for changing a column based on results in another column

you are correct - I ahve now changed the formula in AU and the cells that were giving zero ae now giving #DIV0 ! - are you able to give me something that where it see #DIV0 ! it inputs the value of AP?
 
Upvote 0

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Re: Formuala for changing a column based on results in another column

Probably a better idea to "Fix" your formula in AU, please post the entire formula you're using in AU.
 
Upvote 0
Re: Formuala for changing a column based on results in another column

Well, if you don't want to fix your AU formula, here's a workaround:


Book1
APAQAUAVAW
1Present HCAdjusted HC
2171371TRUE
3151329TRUE
4171769FALSE
5151531FALSE
61717#DIV/0!FALSE
71515#DIV/0!FALSE
8151531FALSE
Sheet636
Cell Formulas
RangeFormula
AQ2=IF(ISERR(AU2),AP2,IF(OR(AU2>=70,AU2<=30),AP2-IF(AP2>16,4,IF(AP2<16,2,0)),AP2))
AU6=1/0
AW2=AP2<>AQ2
 
Upvote 0
Re: Formuala for changing a column based on results in another column

So the result in AU is AS * AT - in some cases that is 0 * 0 resulting in #DIV0 !- - so in that instance I would like AU to insert the value of AP (unchanged)
 
Upvote 0
Re: Formuala for changing a column based on results in another column

If your formula in AU is AS*AT, it is impossible to get the #DIV/0 error, as you're doing multiplication, Not division, if anything, you'll get #VALUE error, so, if you want help fixing your AU formula, please post the entire AU formula, including your AS and AT formula might also help.
 
Upvote 0
Re: Formuala for changing a column based on results in another column

You are right it is a divide - bascally as AS and AT are zeros - if you are ablw to come up with a solution I would be ver grateful - How do I send you the sheet?
 
Upvote 0
Re: Formuala for changing a column based on results in another column

AQ formula in Post # 13 will handle the #DIV/0 error in AU.

Or, use something like this in AU:

=IF(OR(AS2=0,AT2=0),0,AS2/AT2)

Then use AQ formula in Post # 8.
 
Upvote 0
Re: Formuala for changing a column based on results in another column

Not sure what I am supposed to do - I can't place that formula into AU as AU is = AT/AS so I need that formula where there are values in those cells - the formula in #13 doesn't work now I have corrected the formula where there was previously zeros
 
Upvote 0
Re: Formuala for changing a column based on results in another column

Upload your file to a Free file host like Dropbox, and post the link here.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,695
Members
448,979
Latest member
DET4492

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