Help completing formula

KCALDERON5894

New Member
Joined
Mar 3, 2014
Messages
7
I am pretty new to formulas and I'm hoping someone can help me... I am trying to create a formula that assigns a rate of 1% for revenues between $350,000- $750,000 2% for $750,000 - $1,449,000 and 3% for $1,500,000 - $2,500,000. I did =IF(AND(G14>350000, G14<750000)1.00), (AND(G14>750001, G14<1449000)2.00), (AND(G14>15000000, G14<25000000)3.00) but its not working.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
See if this does what you want. I added a 0% for values below $350,000 (which you may not need).

Excel Workbook
FGHI
13
147680000.02
15
Sheet1
 
Upvote 0
=IF(AND(G14>350000;G14<750000);1;IF(AND(G14>750000; G14<1449999);2;IF(AND(G14>1500000; G14<2500000);3;"no match")))
 
Upvote 0
I am pretty new to formulas and I'm hoping someone can help me... I am trying to create a formula that assigns a rate of 1% for revenues between $350,000- $750,000 2% for $750,000 - $1,449,000 and 3% for $1,500,000 - $2,500,000. I did =IF(AND(G14>350000, G14<750000)1.00), (AND(G14>750001, G14<1449000)2.00), (AND(G14>15000000, G14<25000000)3.00) but its not working.

=MATCH(G14,{0,350000,750000,1500000},1)-1

would also work.
 
Upvote 0
Aladin,
Since OP is looking for a percent wouldn't they need to multiple your formula by .01?
 
Upvote 0
Thanks So much! it worked! I modified it to =IF(C5<1000001,C15,IF(C5<2000001,C17,IF(C5<3000001,C18,C19))) except when I tried to add more cells it said " you've entered too many arguments for this function" any way around this?
 
Upvote 0
Thanks So much! it worked! I modified it to =IF(C5<1000001,C15,IF(C5<2000001,C17,IF(C5<3000001,C18,C19))) except when I tried to add more cells it said " you've entered too many arguments for this function" any way around this?

Did you consider the MATCH. formula at all?
 
Upvote 0

Forum statistics

Threads
1,216,372
Messages
6,130,223
Members
449,567
Latest member
ashsweety

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