#1   Report Post  
Jill24
 
Posts: n/a
Default help with formula

$40.50 when S is $795.00 I need help figuring this formula out where am I
going wrong? I keep getting the wrong figures. This is the formula:
=IF(S118<=25, 0.0525*s118) + IF(AND(s118 25, S118<=1000), 1.3125 +
0.0275*(S118 -25)) + IF(S1181000, 28.125 + 0.015*(S118-1000))

Up to $25 will be charged 5.25% ,
5.25% of the initial $25.00 ($1.31), plus 2.75% of the remaining closing
value balance for $25.01 up to $1000,
over $1000.01 5.25% of the initial $25.00 ($1.31), plus 2.75% of the initial
$25.00 - $1,000.00 ($26.81), plus 1.50% of the remaining closing value
balance ($1,000.01 - closing value)

Thanks for any help!
  #2   Report Post  
Jill24
 
Posts: n/a
Default

I should mention that I want to get the formula to give me $40.50 when S is
$795.00. Thanks.

"Jill24" wrote:

$40.50 when S is $795.00 I need help figuring this formula out where am I
going wrong? I keep getting the wrong figures. This is the formula:
=IF(S118<=25, 0.0525*s118) + IF(AND(s118 25, S118<=1000), 1.3125 +
0.0275*(S118 -25)) + IF(S1181000, 28.125 + 0.015*(S118-1000))

Up to $25 will be charged 5.25% ,
5.25% of the initial $25.00 ($1.31), plus 2.75% of the remaining closing
value balance for $25.01 up to $1000,
over $1000.01 5.25% of the initial $25.00 ($1.31), plus 2.75% of the initial
$25.00 - $1,000.00 ($26.81), plus 1.50% of the remaining closing value
balance ($1,000.01 - closing value)

Thanks for any help!

  #3   Report Post  
Rowan Drummond
 
Posts: n/a
Default

Hi Jill

Are you sure about your required result:

$795 - $25 = $770 * 2.75% = $21.18
$25 * 5.25% = $1.31

So as you have explained the percentage breakdowns $795 returns $22.49
which is what I get with your current formula.

Regards
Rowan

Jill24 wrote:
I should mention that I want to get the formula to give me $40.50 when S is
$795.00. Thanks.

"Jill24" wrote:


  #4   Report Post  
Dana DeLouis
 
Posts: n/a
Default

=IF(S118<=25, 0.0525*s118) + IF(AND(s118 25, S118<=1000), 1.3125 +
0.0275*(S118 -25)) + IF(S1181000, 28.125 + 0.015*(S118-1000))


Hi. I get the same answer as Rowan based on your definitions. (22.49)
Slightly different equation though...

=MIN(5.25%*S118, 2.75%*S118 + 0.625, 1.5%*S118 + 13.125)

--
Dana DeLouis
Win XP & Office 2003


"Jill24" wrote in message
...
I should mention that I want to get the formula to give me $40.50 when S is
$795.00. Thanks.

"Jill24" wrote:

$40.50 when S is $795.00 I need help figuring this formula out where am
I
going wrong? I keep getting the wrong figures. This is the formula:
=IF(S118<=25, 0.0525*s118) + IF(AND(s118 25, S118<=1000), 1.3125 +
0.0275*(S118 -25)) + IF(S1181000, 28.125 + 0.015*(S118-1000))

Up to $25 will be charged 5.25% ,
5.25% of the initial $25.00 ($1.31), plus 2.75% of the remaining closing
value balance for $25.01 up to $1000,
over $1000.01 5.25% of the initial $25.00 ($1.31), plus 2.75% of the
initial
$25.00 - $1,000.00 ($26.81), plus 1.50% of the remaining closing value
balance ($1,000.01 - closing value)

Thanks for any help!



  #5   Report Post  
Jill24
 
Posts: n/a
Default

Hi. I'm getting the same results. However I'm charged $40.50 and that fee
structure is how they charge. Maybe I'm being overcharged? Is there away to
change the forumula somehow to make it give me the figure $40.50 in the S
field?

Much appreciated!

"Dana DeLouis" wrote:

=IF(S118<=25, 0.0525*s118) + IF(AND(s118 25, S118<=1000), 1.3125 +
0.0275*(S118 -25)) + IF(S1181000, 28.125 + 0.015*(S118-1000))


Hi. I get the same answer as Rowan based on your definitions. (22.49)
Slightly different equation though...

=MIN(5.25%*S118, 2.75%*S118 + 0.625, 1.5%*S118 + 13.125)

--
Dana DeLouis
Win XP & Office 2003


"Jill24" wrote in message
...
I should mention that I want to get the formula to give me $40.50 when S is
$795.00. Thanks.

"Jill24" wrote:

$40.50 when S is $795.00 I need help figuring this formula out where am
I
going wrong? I keep getting the wrong figures. This is the formula:
=IF(S118<=25, 0.0525*s118) + IF(AND(s118 25, S118<=1000), 1.3125 +
0.0275*(S118 -25)) + IF(S1181000, 28.125 + 0.015*(S118-1000))

Up to $25 will be charged 5.25% ,
5.25% of the initial $25.00 ($1.31), plus 2.75% of the remaining closing
value balance for $25.01 up to $1000,
over $1000.01 5.25% of the initial $25.00 ($1.31), plus 2.75% of the
initial
$25.00 - $1,000.00 ($26.81), plus 1.50% of the remaining closing value
balance ($1,000.01 - closing value)

Thanks for any help!




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
IF formula? meris Excel Worksheet Functions 1 September 6th 05 07:14 AM
writing a formula for a colored value aaronwexler New Users to Excel 11 September 1st 05 03:11 PM
referencing named formula using INDIRECT function [email protected] Excel Worksheet Functions 19 May 11th 05 09:48 AM
Simplify formula Luke Excel Worksheet Functions 37 May 6th 05 07:21 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 09:11 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"