Formula Question

pepschnops

New Member
Joined
Nov 9, 2010
Messages
1
I need to make a formula that satisfied the following logic:
If F7 is less that 100,000 F7 equals 250
If F7 is greater than 100,000 but less than 500,000 F7 equals 537
If F7 is greater than 500,000 F7 equals 750

I tried making a formula but im useless...
=IF(F7<100,000,F7=250,F7>100000<500,000,F7=537,F7>500,000,F7=750

Any help on this would be greatly appreciated.

Thanks,

Matt
 

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
So if F7 is greater than 500,000 then you make it equal to 750. But now it's less than 100,000 so you have to make it equal to 250.

So just put 250 in F7 because whatever you put in, it will always end up as 250!

Seriously though, put this in a cell - but not F7:-

=IF(F7<=100000,250,IF(F7<=500000,537,750))

(You don't say what value you want if F7 is exactly 100,000 or 500,000 so I've made an assumption.)
 
Last edited:
Upvote 0
If you put that formula in F7 you'll create a circular reference. Try in a different cell

=LOOKUP(F7,{0,100000,500000},{250,537,750})
 
Upvote 0

Forum statistics

Threads
1,216,495
Messages
6,130,979
Members
449,611
Latest member
Bushra

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