Formula question

Pipchacha

New Member
Joined
Nov 7, 2017
Messages
9
Hi All,

i am after some help with a cell formula.

Situation.

I have ave a cell with a figure in it.
The cell below it I want to have the following.
If cell above is less then 273 than that cell shoul be 273

can someone please help me with this formula?

thankyou.
 

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.
Hi. What should the cell say if the cell above is more than or equal to 273?
 
Upvote 0
If the value of the cell Is less than 183 it needs to change to zero
if the cell value is between 184 and 273 it needs to change to 283
 
Upvote 0
If the value of the cell Is less than 183 it needs to change to zero
if the cell value is between 184 and 273 it needs to change to 283

Are these in addition to the condition specified in your first post? i.e. if it's greater than 273 the result should be 273? Is that really 273 or 283?
 
Upvote 0
It’s for warranty on a product.
Based on a percentage of purchase.
If purchase above 20000 warranty is calculated at 0.91%
but it has a minimum of 273
cell calculates warranty at 182
if under 183 then it should be 0
if above 183 but under 274 is should be 273
once above 273 it continues to rise
 
Upvote 0
You can give this a try, assumes the cell in question is A1.

=IF(A1<183,0,MAX(273,A1))
 
Upvote 0

Forum statistics

Threads
1,216,081
Messages
6,128,694
Members
449,464
Latest member
againofsoul

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