Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
lsmith
 
Posts: n/a
Default Help needed with "IF" function


I have an "open ended" calculation I need help with. If I have a
specific loan amount, say $100,000.00, and I need to figure out the
calculation for title work costs are for the following, what would the
calculation be?

$2.25 per $1,000 from $10mm upward?

(Bernie Dietrich, if you're out there, write back since you helped me
last time!). Many thanks.:)


--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523

  #2   Report Post  
Posted to microsoft.public.excel.newusers
SVC
 
Posts: n/a
Default Help needed with "IF" function

If your loan amount is in cell A1, in cell B1 use =IF(A1=10000000,
A1/1000*2.25, ""). This will leave the cell blank if the loan amount is less
than $1,000,000.

"lsmith" wrote:


I have an "open ended" calculation I need help with. If I have a
specific loan amount, say $100,000.00, and I need to figure out the
calculation for title work costs are for the following, what would the
calculation be?

$2.25 per $1,000 from $10mm upward?

(Bernie Dietrich, if you're out there, write back since you helped me
last time!). Many thanks.:)


--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523


  #3   Report Post  
Posted to microsoft.public.excel.newusers
lsmith
 
Posts: n/a
Default Help needed with "IF" function


I need verfication of the formulas for the THREE SEPARATE queries below.
I've received a previous answer, but the formula given combined the two
examples. I cannot have ONE formula for these queries, they HAVE to be
separate. They also need to link to the original loan amount, so if
this changes, the other amounts will change in accordance to that
original amount.

If the orginal loan amount is $100,000.00, what would the formula be to
get the amount for:

(1) $5.75 per $1,000 from $1,000 to $100,000 = ____?____

for this amount?

(2) $5.00 per $1,000 from $100,000 to $1,000,000 = ____?____

for this amount?

(3) $3.000 per $1,000 from $1,000,000 to $10,000,000 = ____?____




--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523

  #4   Report Post  
Posted to microsoft.public.excel.newusers
SVC
 
Posts: n/a
Default Help needed with "IF" function

I have quickly put together the the fomula below which seems to provide for
all three scenarios in a single cell (you'll need to verify it, I did this
quickly), assuming the following conditions.

1. For 10,000 to 100,000 there is a straight fee of $5.75 per $1,000.
2. For 100,000 to 1,000,000 the fee includes the maximum fees for #1 plus a
fee of $5.00 per $1,000 for amounts in excess of $100,000.
3. For 1,000,000 to 10,000,000 the fee includes the maximum fees in #2 plus
a fee of $3.00 per $1,000 for amounts in excess of $1,000,000 but less than
or equal to $10,000,000.

If you need calculations in separate cells, you can cut and paste the parts
need from the equation.

Here is my formula:
=IF(AND(1000<=A1,A1<100000),A1/1000*5.75,IF(AND(100000<=A1,A1<1000000),(10*5.75)+ (A1-10000)/1000*5,IF(AND(1000000<=A1,A1<=10000000),(10*5.75)+ (999.99999*5)+(A1-1000000)/1000*3,"")))

"lsmith" wrote:


I need verfication of the formulas for the THREE SEPARATE queries below.
I've received a previous answer, but the formula given combined the two
examples. I cannot have ONE formula for these queries, they HAVE to be
separate. They also need to link to the original loan amount, so if
this changes, the other amounts will change in accordance to that
original amount.

If the orginal loan amount is $100,000.00, what would the formula be to
get the amount for:

(1) $5.75 per $1,000 from $1,000 to $100,000 = ____?____

for this amount?

(2) $5.00 per $1,000 from $100,000 to $1,000,000 = ____?____

for this amount?

(3) $3.000 per $1,000 from $1,000,000 to $10,000,000 = ____?____




--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523


  #5   Report Post  
Posted to microsoft.public.excel.newusers
lsmith
 
Posts: n/a
Default Help needed with "IF" function


Dear SVC: This is part of the problem I'm having. As a new user, I
don't know WHICH parts to take out of the equation for each separate
query. I need three separate formulas.


--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523



  #6   Report Post  
Posted to microsoft.public.excel.newusers
SVC
 
Posts: n/a
Default Help needed with "IF" function

Assuming you have a header row with cell A1 labeled Amount and Cell B1
labeled fee, Cell C1 labeled Range of loan (c2= 1,000 to 10,000, c3=10,000 to
1,000,000 and c4=1,000,000 to 10,000,000), try the following:

Enter the loan amount in Cell A2.

In Cell B2 enter this formula:
=IF(A2=10000,57.5,IF(AND(A2=1000,A2<10000),A2/1000*5.75,""))

In Cell B3 enter this formula: =IF(A21000000,
500,IF(AND(A2=100000,A2<1000000),(A2-100000)/1000*5,""))

In Cell B4 enter this formula:
=IF(AND(A2=1000000,A2<=10000000),(A2-1000000)/1000*3,"")

Cell B2 will show the fee for the portion of the loan from 1,000 to 10,000;
Cell B3 will show the fee for the portion of the loan from 10,000 to
1,000,000; and Cell B4 will show the fee for the portion of the loan from
1,000,000 to 10,000,000. You can create a sum in cell B5 to give you the
total fee.

"lsmith" wrote:


Dear SVC: This is part of the problem I'm having. As a new user, I
don't know WHICH parts to take out of the equation for each separate
query. I need three separate formulas.


--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523


  #7   Report Post  
Posted to microsoft.public.excel.newusers
SVC
 
Posts: n/a
Default Help needed with "IF" function

I just noted an error for cell B3--the correct formula is: =IF(A21000000,
4950,IF(AND(A2=10000,A2<=1000000),(A2-10000)/1000*5,""))

"lsmith" wrote:


Dear SVC: This is part of the problem I'm having. As a new user, I
don't know WHICH parts to take out of the equation for each separate
query. I need three separate formulas.


--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523


  #8   Report Post  
Posted to microsoft.public.excel.newusers
SVC
 
Posts: n/a
Default Help needed with "IF" function

Sorry about this. Another correction to cell B3 and that should be it:
=IF(A21000000, 4999.5,IF(AND(A2=10000,A2<=1000000),(A2-10000)/1000*5,""))

"SVC" wrote:

I have quickly put together the the fomula below which seems to provide for
all three scenarios in a single cell (you'll need to verify it, I did this
quickly), assuming the following conditions.

1. For 10,000 to 100,000 there is a straight fee of $5.75 per $1,000.
2. For 100,000 to 1,000,000 the fee includes the maximum fees for #1 plus a
fee of $5.00 per $1,000 for amounts in excess of $100,000.
3. For 1,000,000 to 10,000,000 the fee includes the maximum fees in #2 plus
a fee of $3.00 per $1,000 for amounts in excess of $1,000,000 but less than
or equal to $10,000,000.

If you need calculations in separate cells, you can cut and paste the parts
need from the equation.

Here is my formula:
=IF(AND(1000<=A1,A1<100000),A1/1000*5.75,IF(AND(100000<=A1,A1<1000000),(10*5.75)+ (A1-10000)/1000*5,IF(AND(1000000<=A1,A1<=10000000),(10*5.75)+ (999.99999*5)+(A1-1000000)/1000*3,"")))

"lsmith" wrote:


I need verfication of the formulas for the THREE SEPARATE queries below.
I've received a previous answer, but the formula given combined the two
examples. I cannot have ONE formula for these queries, they HAVE to be
separate. They also need to link to the original loan amount, so if
this changes, the other amounts will change in accordance to that
original amount.

If the orginal loan amount is $100,000.00, what would the formula be to
get the amount for:

(1) $5.75 per $1,000 from $1,000 to $100,000 = ____?____

for this amount?

(2) $5.00 per $1,000 from $100,000 to $1,000,000 = ____?____

for this amount?

(3) $3.000 per $1,000 from $1,000,000 to $10,000,000 = ____?____




--
lsmith
------------------------------------------------------------------------
lsmith's Profile: http://www.excelforum.com/member.php...o&userid=31824
View this thread: http://www.excelforum.com/showthread...hreadid=519523


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
Text "comparison" operator for "contains" used in an "IF" Function Pawaso Excel Worksheet Functions 4 April 4th 23 11:35 AM
Function needed to calculate arrival patterns klwinston Excel Worksheet Functions 3 January 24th 06 01:18 AM
Function needed???? prbucci Excel Worksheet Functions 9 January 15th 06 07:26 AM
Desperate Help needed with a function. Lori Excel Worksheet Functions 3 July 21st 05 03:19 AM
IF function help needed jmcclain Excel Worksheet Functions 2 February 23rd 05 04:33 PM


All times are GMT +1. The time now is 09:37 AM.

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"