#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ray
 
Posts: n/a
Default MEGA FORMULA

I am trying to create a formula for which I need to calculate a discount
percentage based on supplier spend. For example, a supplier may receive a
discount of .25% based on spend between $1.00 and $100,000.00, .31% based on
spend between $ 100,001.00 and $ 150,000.00 and a .38% discount based on
spend between $ 150,001.00 and $ 200,000.00. We have been trying several
options but it doesn't seem to be working.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bearacade
 
Posts: n/a
Default MEGA FORMULA


=IF(A1<=100000,A1-A1*0.025,IF(AND(A1100000,A1<=150000),A1-A1*0.031,IF(AND(A1150000,A1<=200000),A1-A1*0.038,"Amount
200000")))



--
Bearacade


------------------------------------------------------------------------
Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016
View this thread: http://www.excelforum.com/showthread...hreadid=551554

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips
 
Posts: n/a
Default MEGA FORMULA

Create a table of

1 .25%
100000 .31%

etc., in M1:N10 say

and then use

=VLOOKUP(K1,M1:N10,2,TRUE)
--

HTH

Bob Phillips

(replace xxxx in the email address with gmail if mailing direct)

"Ray" wrote in message
...
I am trying to create a formula for which I need to calculate a discount
percentage based on supplier spend. For example, a supplier may receive a
discount of .25% based on spend between $1.00 and $100,000.00, .31% based

on
spend between $ 100,001.00 and $ 150,000.00 and a .38% discount based on
spend between $ 150,001.00 and $ 200,000.00. We have been trying several
options but it doesn't seem to be working.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Domenic
 
Posts: n/a
Default MEGA FORMULA

Assuming that A2 contains the amount the supplier spent, try...

=IF(A2200000,"Exceeds
200,000",LOOKUP(A2,{1,100001,150001},{0.0025,0.003 1,0.0038}))

Hope this helps!

In article ,
Ray wrote:

I am trying to create a formula for which I need to calculate a discount
percentage based on supplier spend. For example, a supplier may receive a
discount of .25% based on spend between $1.00 and $100,000.00, .31% based on
spend between $ 100,001.00 and $ 150,000.00 and a .38% discount based on
spend between $ 150,001.00 and $ 200,000.00. We have been trying several
options but it doesn't seem to be working.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph
 
Posts: n/a
Default MEGA FORMULA

"Ray" wrote in message
...
I am trying to create a formula for which I need to calculate a discount
percentage based on supplier spend. For example, a supplier may receive a
discount of .25% based on spend between $1.00 and $100,000.00, .31% based
on
spend between $ 100,001.00 and $ 150,000.00 and a .38% discount based on
spend between $ 150,001.00 and $ 200,000.00. We have been trying several
options but it doesn't seem to be working.


=A1-(0.0025*MIN(A1,100000)+0.0031*MIN(MAX(0,A1-100000),50000)+0.0038*(MIN(MAX(0,A1-150000),50000)))
--
David Biddulph




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Arvi Laanemets
 
Posts: n/a
Default MEGA FORMULA

Hi

Discount percent is
=(0.25+(A1100000)*0.06+(A1150000)*0.07+(A120000 0)*x)

Arvi Laanemets


"Ray" wrote in message
...
I am trying to create a formula for which I need to calculate a discount
percentage based on supplier spend. For example, a supplier may receive a
discount of .25% based on spend between $1.00 and $100,000.00, .31% based

on
spend between $ 100,001.00 and $ 150,000.00 and a .38% discount based on
spend between $ 150,001.00 and $ 200,000.00. We have been trying several
options but it doesn't seem to be working.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
Formula checking multiple worksheets sonic-the-mouse Excel Worksheet Functions 2 June 5th 05 03:28 AM
Creating a check mark box MarthaSue Setting up and Configuration of Excel 18 April 28th 05 12:31 AM
Match / Vlookup within an Array formula Hari Prasadh Excel Discussion (Misc queries) 3 February 3rd 05 04:37 PM


All times are GMT +1. The time now is 03:50 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"