Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-30-2008, 01:50 PM
johniellll@gmail.com
 
Posts: n/a
calculating inflows in each month depending on different paymentterms

Hi there,


I have the following problem. We're sealling 2 products, each has
different payment term and the payment term can change during the
year. It is pretty simple if payment term is an equivalent of 30 days
(if =30 then inflows are in the next month, if =90 then inflows are in
n+3 month and so on) The problem occurs when payment term is different
than equivalent of 30 days. We noticed that if payment term =7 days,
than 7/30=23% of inflows are in n+1 month and (30-7)/30=77% of inflows
are in n month (if payment term =14 then 14/30=47% is in n+1 month and
16/30=53% is in n month). The same is for payment term e.g. =40,
40=30+10 so 10/30=33% of inflows are in n+2 months and (30-10)/30=66%
of inflows are in n+1 month.

I hope that following example will help you understand what I am
talking about:

Jan Feb Mar Apr May Jun Jul Aug and so on
Revenue: 4252 3422 4534 6356 3643 4346 1122 3424

Product A 30% 20% 15% 20% 25% 30% 30% 27%
Payment term (in days) 30 30 180 60 14 14 14 14

Product B 70% 80% 85% 80% 75% 70% 70% 73%
Payment term (in days) 40 40 40 30 30 15 14 14

Inflows: ... ... ... ... ... ... ... ...

where

Feb: 4252*30% + 4252*70%*(20/30)
Mar: 4252*70%(10/30) + 3422*20% + 3422*80%*(20/30)
Apr: 3422*80%*(10/30) + 4534*85%*(20/30)
May: 4534*85%*(10/30) + 6354*80% + 3643*25%*(16/30)
Jun: 6356*20% + 3643*25%*(14/30) + 3643*75% + 4346*30%*(16/30) +
4346*70%*(15/30)

or in other words

Inflows:
Feb: Jan*30% + Jan*70%*(20/30)
Mar: Jan*70%*(10/30) + Feb*20% + Feb*80%*(20/30)
Apr: Feb*80%*(10/30) + Mar*85%*(20/30)
May: Mar*85%*(10/30) + Apr*80% + May*25%*(16/30)
Jun: Apr*20% + May*25%*(14/30) + May*75% + Jun*30%*(16/30) +
Jun*70%*(15/30)

and so on (I got data for 2008-2011)

Is there a way to write some formulas that will calculate the inflows
in each month automatically?

Lukasz
Reply With Quote
  #2 (permalink)  
Old 05-02-2008, 08:57 AM
Héctor Miguel
 
Posts: n/a
Re: calculating inflows in each month depending on different payment terms

hi, ?

1) it's not very clear why you consider partial incomes in some cases and not in another (i.e.)
- for Feb your incomes includes "... + 4252*70%*(20/30)" which term in days is 40
- for Apr your incomes EXcludes any proportion from Mar/4534*15% where days term is 180 -???-

2) using {tab} and {space} to "simulate" an excel table is NOT as "visible" as when you comment (real) ranges -?-
it's also unclear if Jan/Feb/... are only the 3 months letter, or we are talking about (real) date-entries -?- so...

3) these are (my) "assumptions" (your data table arrangement):
a) column A is for row titles
b) data in columns B:I (Jan/Feb/... in range [B1:I1])
c) revenues in row 2
d) row 3 is empty (same as rows 6 & 9 which will be used as "helper rows")
e) percentage for products in rows 4 (product A) and 7 (product B)
f) payment term in days in rows 5 (product A) and 8 (product B)

1) find the month in which collect of funds reaches the payment term:
[B6] =ceiling(b5/30,1)+columns($b$1:b$1)
[B9] =ceiling(b8/30,1)+columns($b$1:b$1)
-> fill-right this formulae up to column I (column # 9)

2) this is your incomes formula (assuming you start on row 11 and column C) [C11]
=sumproduct(--($b6:b6=columns($b1:c1)),$b2:b2,$b4:b4)+sumproduct (--($b9:b9=columns($b1:c1)),$b2:b2,$b7:b7)
-> fill-right this formula up to column_n

if any doubts (or further-clear information)... would you please comment ?
hth,
hector.

__ original post __
> ... We're sealling 2 products, each has different payment term and the payment term can change during the year.
> It is pretty simple if payment term is an equivalent of 30 days
> (if =30 then inflows are in the next month, if =90 then inflows are in n+3 month and so on)
> The problem occurs when payment term is different than equivalent of 30 days.
> We noticed that if payment term =7 days, than 7/30=23% of inflows are in n+1 month
> and (30-7)/30=77% of inflows are in n month
> (if payment term =14 then 14/30=47% is in n+1 month and 16/30=53% is in n month).
> The same is for payment term e.g. =40, 40=30+10 so 10/30=33% of inflows are in n+2 months
> and (30-10)/30=66% of inflows are in n+1 month.
>
> I hope that following example will help you understand what I am talking about:
>
> Jan Feb Mar Apr May Jun Jul Aug and so on
> Revenue: 4252 3422 4534 6356 3643 4346 1122 3424
>
> Product A 30% 20% 15% 20% 25% 30% 30% 27%
> Payment term (in days) 30 30 180 60 14 14 14 14
>
> Product B 70% 80% 85% 80% 75% 70% 70% 73%
> Payment term (in days) 40 40 40 30 30 15 14 14
>
> Inflows: ... ... ... ... ... ... ... ...
>
> where
>
> Feb: 4252*30% + 4252*70%*(20/30)
> Mar: 4252*70%(10/30) + 3422*20% + 3422*80%*(20/30)
> Apr: 3422*80%*(10/30) + 4534*85%*(20/30)
> May: 4534*85%*(10/30) + 6354*80% + 3643*25%*(16/30)
> Jun: 6356*20% + 3643*25%*(14/30) + 3643*75% + 4346*30%*(16/30) + 4346*70%*(15/30)
>
> or in other words
>
> Inflows:
> Feb: Jan*30% + Jan*70%*(20/30)
> Mar: Jan*70%*(10/30) + Feb*20% + Feb*80%*(20/30)
> Apr: Feb*80%*(10/30) + Mar*85%*(20/30)
> May: Mar*85%*(10/30) + Apr*80% + May*25%*(16/30)
> Jun: Apr*20% + May*25%*(14/30) + May*75% + Jun*30%*(16/30) + Jun*70%*(15/30)
>
> and so on (I got data for 2008-2011)
>
> Is there a way to write some formulas that will calculate the inflows in each month automatically?
>
> Lukasz



Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:57 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Personal Car Finance | Loan | Mobile Phones | Mortgage Calculator | Home Loan



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114