Help - if, and, or plus whatever else I need!

Mace

New Member
Joined
Nov 10, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi All
Am hoping someone can help. I am trying to create a formula to help with rent reviews. Essentially there is a cap and a collar i.e. a minimum and maximum. What I want to formulate is the following - if cell A3 is >= 1.03, then 1.03 should apply. If cell A3 is <=1.01, then 1.01 should apply. If call A3 is greater than 1.01, but less than 1.03, then cell A3 should remain as it is.
I hope I have explained this properly - any help would be greatly appreciated
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
can this be in a new column , if not then vba needed - not my area

=IF( A3 >=1.03, 1.03, IF( A3<=1.01, 1.01, A3))
 
Upvote 0
Hi & welcome to MrExcel.
How about
Excel Formula:
=MEDIAN(A3,1.01,1.03)
 
Upvote 0
Hi, thank you both for such prompt replies. ETAF - that appears to have worked. Thanks again!
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,069
Members
449,092
Latest member
ipruravindra

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