#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Fee Grid Calculation

I am looking for an easy way to calculate the fee based on the market value
of hundred of individual accounts.

The fee has various breakpoints - for example:

0 - 10,000 1% ( first 10,000)
10,001 - 100,000 .50% (Next 90,000)
100,001 - 500,000 .25% ( Next 400,000)
500,001 - 1,000,000 .10% ( Next 500,000)


Thus I would like a worksheet that would have one column with the Market
Value and another column with the fee amount. ( May be other columns to
assist with the calculation)

I am hoping to avoid nesting many if, then statements.

Any thoughts?

Thanks for your time and assistance
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default Fee Grid Calculation

Hi,
Let's assume that you enter the number in cell A24 in B24 enter

=SUMPRODUCT(--(A24{0;10000;100000;500000}),A24-{0;10000;100000;500000},{0.01;-0.005;-0.00025;-0.00015})

Change cell to fit your needs

if this helps please click yes thanks

"John S" wrote:

I am looking for an easy way to calculate the fee based on the market value
of hundred of individual accounts.

The fee has various breakpoints - for example:

0 - 10,000 1% ( first 10,000)
10,001 - 100,000 .50% (Next 90,000)
100,001 - 500,000 .25% ( Next 400,000)
500,001 - 1,000,000 .10% ( Next 500,000)


Thus I would like a worksheet that would have one column with the Market
Value and another column with the fee amount. ( May be other columns to
assist with the calculation)

I am hoping to avoid nesting many if, then statements.

Any thoughts?

Thanks for your time and assistance

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 846
Default Fee Grid Calculation

One method using no if statements - this assumes the number in question is in
cell E7.

=MIN(E7,10000)*0.01+MIN(90000,MAX(0,E7-10000))*0.005+MIN(400000,MAX(0,E7-100000))*0.0025+MIN(500000,MAX(0,E7-500000))*0.001
--
Wag more, bark less


"John S" wrote:

I am looking for an easy way to calculate the fee based on the market value
of hundred of individual accounts.

The fee has various breakpoints - for example:

0 - 10,000 1% ( first 10,000)
10,001 - 100,000 .50% (Next 90,000)
100,001 - 500,000 .25% ( Next 400,000)
500,001 - 1,000,000 .10% ( Next 500,000)


Thus I would like a worksheet that would have one column with the Market
Value and another column with the fee amount. ( May be other columns to
assist with the calculation)

I am hoping to avoid nesting many if, then statements.

Any thoughts?

Thanks for your time and assistance

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Fee Grid Calculation

This is perfect - Thanks so much - do you know where I can find a write up
that explains what is going in the formula so I may understand better????

"Eduardo" wrote:

Hi,
Let's assume that you enter the number in cell A24 in B24 enter

=SUMPRODUCT(--(A24{0;10000;100000;500000}),A24-{0;10000;100000;500000},{0.01;-0.005;-0.00025;-0.00015})

Change cell to fit your needs

if this helps please click yes thanks

"John S" wrote:

I am looking for an easy way to calculate the fee based on the market value
of hundred of individual accounts.

The fee has various breakpoints - for example:

0 - 10,000 1% ( first 10,000)
10,001 - 100,000 .50% (Next 90,000)
100,001 - 500,000 .25% ( Next 400,000)
500,001 - 1,000,000 .10% ( Next 500,000)


Thus I would like a worksheet that would have one column with the Market
Value and another column with the fee amount. ( May be other columns to
assist with the calculation)

I am hoping to avoid nesting many if, then statements.

Any thoughts?

Thanks for your time and assistance

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default Fee Grid Calculation

Hi,
take a look here, different uses of sumproduct


http://www.xldynamic.com/source/xld.SUMPRODUCT.html

"John S" wrote:

This is perfect - Thanks so much - do you know where I can find a write up
that explains what is going in the formula so I may understand better????

"Eduardo" wrote:

Hi,
Let's assume that you enter the number in cell A24 in B24 enter

=SUMPRODUCT(--(A24{0;10000;100000;500000}),A24-{0;10000;100000;500000},{0.01;-0.005;-0.00025;-0.00015})

Change cell to fit your needs

if this helps please click yes thanks

"John S" wrote:

I am looking for an easy way to calculate the fee based on the market value
of hundred of individual accounts.

The fee has various breakpoints - for example:

0 - 10,000 1% ( first 10,000)
10,001 - 100,000 .50% (Next 90,000)
100,001 - 500,000 .25% ( Next 400,000)
500,001 - 1,000,000 .10% ( Next 500,000)


Thus I would like a worksheet that would have one column with the Market
Value and another column with the fee amount. ( May be other columns to
assist with the calculation)

I am hoping to avoid nesting many if, then statements.

Any thoughts?

Thanks for your time and assistance



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Fee Grid Calculation

=LOOKUP(B1,{0,10001,100001,500001,1000001},{0.01,0 .005,0.0025,0.001})*B1

Will return #N/A for any number above 1,000,000


Gord Dibben MS Excel MVP

On Tue, 1 Dec 2009 08:39:01 -0800, John S
wrote:

I am looking for an easy way to calculate the fee based on the market value
of hundred of individual accounts.

The fee has various breakpoints - for example:

0 - 10,000 1% ( first 10,000)
10,001 - 100,000 .50% (Next 90,000)
100,001 - 500,000 .25% ( Next 400,000)
500,001 - 1,000,000 .10% ( Next 500,000)


Thus I would like a worksheet that would have one column with the Market
Value and another column with the fee amount. ( May be other columns to
assist with the calculation)

I am hoping to avoid nesting many if, then statements.

Any thoughts?

Thanks for your time and assistance


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
Excel 2007 - "Snap To Grid" doesn't work on same grid line rwhtx Excel Discussion (Misc queries) 0 November 14th 07 03:40 PM
Grid lines in Excel not showing.Have tools,options,view/grid cked bajlearning Excel Discussion (Misc queries) 6 January 28th 07 02:00 AM
printing grid lines when grid lines is checked fergos Setting up and Configuration of Excel 1 October 4th 05 02:55 AM
I need to convert grid.doc to an Excel Grid. suavejohn Charts and Charting in Excel 0 September 1st 05 06:26 PM
grid & grid refrences john redmanshaw New Users to Excel 1 February 6th 05 06:57 PM


All times are GMT +1. The time now is 06:03 PM.

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

About Us

"It's about Microsoft Excel"