#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Formula problem

I'm working on a cash flow chart and I can't figuare out how to get the
formula to work. I have been try to use IF functions. Here is the problem.
Cash balance must be kept at $50,000 if lower loan needs to be increased, if
cash balance is over $50,000 then amount over goes back to loan. I also must
deduct interest before additional money is taken or given back. So far I have
come up with the following formula which worked until we got over $50,000 and
I need to put money back.
=IF(J46<=50000,((50000+J49))-J46) Thanks for any help. Nancy E
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 41
Default Formula problem

i'm not sure what is in J49 so I can't tell exactly what you are trying to do
with this formula, but you are missing the final argument of the function
which is to tell Excel what to do if the first argument is false, i.e.
J4650000. As written this will simply result in FALSE when you get over
50000.

"Nancy E" wrote:

I'm working on a cash flow chart and I can't figuare out how to get the
formula to work. I have been try to use IF functions. Here is the problem.
Cash balance must be kept at $50,000 if lower loan needs to be increased, if
cash balance is over $50,000 then amount over goes back to loan. I also must
deduct interest before additional money is taken or given back. So far I have
come up with the following formula which worked until we got over $50,000 and
I need to put money back.
=IF(J46<=50000,((50000+J49))-J46) Thanks for any help. Nancy E

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Formula problem

J49 is the interest on the loan from the previous month. I need to deduct the
interest from the excess of 50,000 before I apply it to the loan. And you are
completely correct what I'm getting is FALSE. Thanks for any help you can
give me. Nancy

"Erin Searfoss" wrote:

i'm not sure what is in J49 so I can't tell exactly what you are trying to do
with this formula, but you are missing the final argument of the function
which is to tell Excel what to do if the first argument is false, i.e.
J4650000. As written this will simply result in FALSE when you get over
50000.

"Nancy E" wrote:

I'm working on a cash flow chart and I can't figuare out how to get the
formula to work. I have been try to use IF functions. Here is the problem.
Cash balance must be kept at $50,000 if lower loan needs to be increased, if
cash balance is over $50,000 then amount over goes back to loan. I also must
deduct interest before additional money is taken or given back. So far I have
come up with the following formula which worked until we got over $50,000 and
I need to put money back.
=IF(J46<=50000,((50000+J49))-J46) Thanks for any help. Nancy E

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 41
Default Formula problem

I think I may be missing something because I'm not sure why you need the IF
statement. If you simply use =(50000+J49)-J46 it will show as a negative if
J46-J49 is $50K. If you're trying to accomplish something else you'll need
to add the calculation to be performed if the first argument is false.
Something like this.

=IF(J46<=50000,(50000+J49)-J46,(50000+J49)-J46)

Here it is redundant, but you would change the last (50000+J49)-J46 to be
the computation you need.

"Nancy E" wrote:

J49 is the interest on the loan from the previous month. I need to deduct the
interest from the excess of 50,000 before I apply it to the loan. And you are
completely correct what I'm getting is FALSE. Thanks for any help you can
give me. Nancy

"Erin Searfoss" wrote:

i'm not sure what is in J49 so I can't tell exactly what you are trying to do
with this formula, but you are missing the final argument of the function
which is to tell Excel what to do if the first argument is false, i.e.
J4650000. As written this will simply result in FALSE when you get over
50000.

"Nancy E" wrote:

I'm working on a cash flow chart and I can't figuare out how to get the
formula to work. I have been try to use IF functions. Here is the problem.
Cash balance must be kept at $50,000 if lower loan needs to be increased, if
cash balance is over $50,000 then amount over goes back to loan. I also must
deduct interest before additional money is taken or given back. So far I have
come up with the following formula which worked until we got over $50,000 and
I need to put money back.
=IF(J46<=50000,((50000+J49))-J46) Thanks for any help. Nancy E

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Formula problem

It worked. Thank you so much. I really appreciate it. Your expanded formula
is the one I needed. Thanks again, Nancy

"Erin Searfoss" wrote:

I think I may be missing something because I'm not sure why you need the IF
statement. If you simply use =(50000+J49)-J46 it will show as a negative if
J46-J49 is $50K. If you're trying to accomplish something else you'll need
to add the calculation to be performed if the first argument is false.
Something like this.

=IF(J46<=50000,(50000+J49)-J46,(50000+J49)-J46)

Here it is redundant, but you would change the last (50000+J49)-J46 to be
the computation you need.

"Nancy E" wrote:

J49 is the interest on the loan from the previous month. I need to deduct the
interest from the excess of 50,000 before I apply it to the loan. And you are
completely correct what I'm getting is FALSE. Thanks for any help you can
give me. Nancy

"Erin Searfoss" wrote:

i'm not sure what is in J49 so I can't tell exactly what you are trying to do
with this formula, but you are missing the final argument of the function
which is to tell Excel what to do if the first argument is false, i.e.
J4650000. As written this will simply result in FALSE when you get over
50000.

"Nancy E" wrote:

I'm working on a cash flow chart and I can't figuare out how to get the
formula to work. I have been try to use IF functions. Here is the problem.
Cash balance must be kept at $50,000 if lower loan needs to be increased, if
cash balance is over $50,000 then amount over goes back to loan. I also must
deduct interest before additional money is taken or given back. So far I have
come up with the following formula which worked until we got over $50,000 and
I need to put money back.
=IF(J46<=50000,((50000+J49))-J46) Thanks for any help. Nancy E



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
formula problem John48 Excel Worksheet Functions 8 August 7th 06 05:17 PM
Formula problem superkopite Excel Discussion (Misc queries) 8 January 27th 06 09:12 PM
Problem with Formula John Excel Worksheet Functions 15 September 19th 05 12:55 PM
Formula problem Steved Excel Worksheet Functions 2 July 5th 05 10:53 PM
Formula Problem Tracey BVS Excel Discussion (Misc queries) 2 December 9th 04 11:50 AM


All times are GMT +1. The time now is 02:02 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"