Help..is it possible to....

M17RVX

New Member
Joined
Mar 11, 2020
Messages
2
Office Version
  1. 365
Platform
  1. Windows
create a formula in a cell which looks at another cell and depending on the value of the cell, output one of 5 values
Forgive my terminology, but please can you help me.
I want to create a formula that will lookup a cell and depending on the value of the cell round down to the nearest 25%
EG:
Cell = 0 to 24 iI want to return a value of 0
Cell = 25 to 49 I want to return a value of 25
Cell = 50 to 74 I want to return a value of 50
Cell = 75 to 99 I wants to return a value of 75
Cell = 100 or more I wants to return a value of 100

Thank you in anticipation ;)
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
How about
=IF(A2<125,FLOOR(A2,25),100)
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,476
Messages
6,125,029
Members
449,205
Latest member
Eggy66

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