Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 1
Default Help with Nested IF Then statement?

Hello. I am not sure how to model/structure an IF THEN statement in excel. Or if the result I am looking for requires a nested statement or not.

Basically, I have an excel cash flow problem. A certain partner is entitled to a performance fee if a certain threshhold is achieved:

PROBLEM SET-UP: If the annual cash flow is greater than $12.5 million, then Partner A gets 10% of the amount ABOVE this $12.5 million threshold. HOWEVER, this 10% performance fee is capped at 1% of total project revenue in any given year.

ROW 1 is the annual cash flow amount: $10 million in Year 1, $14 million in Year 2, etc.
ROW 2 is the annual cash flow threshold of the $12.5 million: This remains fixed.

So in year 1 there is not performance fee paid out, but in year 2 there is $150,000 fee paid out to Partner A. (10% of the $1.5 million)

ROW 3 is the total annual cap based on 1% of total revenue: Year 1: $110,000, Year 2: $200,000, etc.

So I have an IF statement saying, IF(ROW 1 is greater than ROW 2, then multiply 10% times the difference, otherwise ZERO)

But how do I model in the condition that IF ROW 3 exceeds a certain amount this is the amount the forumla should yield? Is this an ELSE statment or OR or AND???

How might this look? Thank you.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default Help with Nested IF Then statement?

excel_novice12 wrote:

Hello. I am not sure how to model/structure an IF THEN statement in
excel. Or if the result I am looking for requires a nested statement or
not.

Basically, I have an excel cash flow problem. A certain partner is
entitled to a performance fee if a certain threshhold is achieved:

PROBLEM SET-UP: If the annual cash flow is greater than $12.5 million,
then Partner A gets 10% of the amount ABOVE this $12.5 million
threshold. HOWEVER, this 10% performance fee is capped at 1% of total
project revenue in any given year.

ROW 1 is the annual cash flow amount: $10 million in Year 1, $14
million in Year 2, etc.
ROW 2 is the annual cash flow threshold of the $12.5 million: This
remains fixed.

So in year 1 there is not performance fee paid out, but in year 2 there
is $150,000 fee paid out to Partner A. (10% of the $1.5 million)

ROW 3 is the total annual cap based on 1% of total revenue: Year 1:
$110,000, Year 2: $200,000, etc.

So I have an IF statement saying, IF(ROW 1 is greater than ROW 2, then
multiply 10% times the difference, otherwise ZERO)

But how do I model in the condition that IF ROW 3 exceeds a certain
amount this is the amount the forumla should yield? Is this an ELSE
statment or OR or AND???

How might this look? Thank you.


Like this:
=IF(A1A2,IF(((A1-A2)*0.1)A3,A3,(A1-A2)*0.1),0)
....where A1 is the cash flow, A2 is the threshold, and A3 is the cap.

Put that somewhere in column A of the "performance fee" row (A4 or
wherever) and then copy it across. (If the first column isn't A, adjust as
necessary *before* copying.)

The "else" of an IF is simply whatever's after the second comma:
IF(test,action if true,action if false)

(Excel has both AND and OR, but in this specific case, neither is needed.)

--
I guess the only thing we have in common is our love of boobs.
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 538
Default Help with Nested IF Then statement?

Spencer101 wrote:

I'm not sure I understand the maths behind your question as if the
revenue for year 2 is $14m I do not see how 1% of that is $200k.


Revenue and cash flow aren't the same thing.
http://en.wikipedia.org/wiki/Cash_flow
http://en.wikipedia.org/wiki/Revenue

--
Had this been an actual emergency, we would have fled in terror,
and you would not have been informed.
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
Nested IF statement WIJ Excel Discussion (Misc queries) 3 October 27th 09 05:39 AM
Nested if then else statement clk Excel Discussion (Misc queries) 3 July 7th 09 06:19 PM
Nested IF Statement Help Donnie Excel Discussion (Misc queries) 4 September 10th 08 09:04 PM
Nested IF statement Teri Excel Worksheet Functions 2 January 30th 07 06:40 PM
Nested if statement burl_h Excel Worksheet Functions 3 December 16th 06 06:35 PM


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