#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bjw bjw is offline
external usenet poster
 
Posts: 12
Default Count maybe?

I need to calculate the days coverage i have for my inventory. I start with
90660 units on 2-23 and then subtract my sales from my inventory. How many
days do i have before my inventory will go negative. I need to calulate this
daily over a period of time. Is there a formula i can use?
Date Days Cov Sales Iventory
FRI 02/23/07 90660
SAT 02/24/07 5D 10044 80616
SUN 02/25/07 4D 6696 73920
MON 02/26/07 3D 14580 59340
TUE 02/27/07 2D 18624 40716
WED 02/28/07 1D 18624 22092
THU 03/01/07 22656 -564


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,365
Default Count maybe?

Assuming that your table here starts with "Date" in A1, over in cell E3 (same
row with 10044 and 80616 entries), put this formula
=INT(D3/AVERAGE(C$3:C3))
That will give you the number of days of inventory remaining at that point
based on average average sales to date as you extend the formula down the
sheet. The results I get are 8, 8, 5, 3 and 1 for the values you have in the
chart (and then of course it goes negative).

If you wanted the same thing just based on the last day's sales,
disregarding earlier sales amounts just make it =INT(D3/C3)

If you want to show partial days, drop the INT() from the formula, as:
=D3/AVERAGE(C$3:C3) and =D3/C3


"bjw" wrote:

I need to calculate the days coverage i have for my inventory. I start with
90660 units on 2-23 and then subtract my sales from my inventory. How many
days do i have before my inventory will go negative. I need to calulate this
daily over a period of time. Is there a formula i can use?
Date Days Cov Sales Iventory
FRI 02/23/07 90660
SAT 02/24/07 5D 10044 80616
SUN 02/25/07 4D 6696 73920
MON 02/26/07 3D 14580 59340
TUE 02/27/07 2D 18624 40716
WED 02/28/07 1D 18624 22092
THU 03/01/07 22656 -564


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bjw bjw is offline
external usenet poster
 
Posts: 12
Default Count maybe?

I really don't want an average though...I need the literal numbers to come
out of the formulas. Is there a way to do that?

"JLatham" wrote:

Assuming that your table here starts with "Date" in A1, over in cell E3 (same
row with 10044 and 80616 entries), put this formula
=INT(D3/AVERAGE(C$3:C3))
That will give you the number of days of inventory remaining at that point
based on average average sales to date as you extend the formula down the
sheet. The results I get are 8, 8, 5, 3 and 1 for the values you have in the
chart (and then of course it goes negative).

If you wanted the same thing just based on the last day's sales,
disregarding earlier sales amounts just make it =INT(D3/C3)

If you want to show partial days, drop the INT() from the formula, as:
=D3/AVERAGE(C$3:C3) and =D3/C3


"bjw" wrote:

I need to calculate the days coverage i have for my inventory. I start with
90660 units on 2-23 and then subtract my sales from my inventory. How many
days do i have before my inventory will go negative. I need to calulate this
daily over a period of time. Is there a formula i can use?
Date Days Cov Sales Iventory
FRI 02/23/07 90660
SAT 02/24/07 5D 10044 80616
SUN 02/25/07 4D 6696 73920
MON 02/26/07 3D 14580 59340
TUE 02/27/07 2D 18624 40716
WED 02/28/07 1D 18624 22092
THU 03/01/07 22656 -564


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,365
Default Count maybe?

Try this
=D3/C3
in cell E3. That will give you estimated days remaining, including
fraction, based on that day's sales and the remaining inventory.


"bjw" wrote:

I really don't want an average though...I need the literal numbers to come
out of the formulas. Is there a way to do that?

"JLatham" wrote:

Assuming that your table here starts with "Date" in A1, over in cell E3 (same
row with 10044 and 80616 entries), put this formula
=INT(D3/AVERAGE(C$3:C3))
That will give you the number of days of inventory remaining at that point
based on average average sales to date as you extend the formula down the
sheet. The results I get are 8, 8, 5, 3 and 1 for the values you have in the
chart (and then of course it goes negative).

If you wanted the same thing just based on the last day's sales,
disregarding earlier sales amounts just make it =INT(D3/C3)

If you want to show partial days, drop the INT() from the formula, as:
=D3/AVERAGE(C$3:C3) and =D3/C3


"bjw" wrote:

I need to calculate the days coverage i have for my inventory. I start with
90660 units on 2-23 and then subtract my sales from my inventory. How many
days do i have before my inventory will go negative. I need to calulate this
daily over a period of time. Is there a formula i can use?
Date Days Cov Sales Iventory
FRI 02/23/07 90660
SAT 02/24/07 5D 10044 80616
SUN 02/25/07 4D 6696 73920
MON 02/26/07 3D 14580 59340
TUE 02/27/07 2D 18624 40716
WED 02/28/07 1D 18624 22092
THU 03/01/07 22656 -564


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
Count Intervals of 2 Consecutive Values in same Row and Return Count across Row Sam via OfficeKB.com Excel Worksheet Functions 6 November 29th 05 03:27 PM
How do i count numbers and letters to find a total count of all Linda Excel Worksheet Functions 4 November 10th 05 04:51 PM
Count Intervals of 1 Numeric value in a Row and Return Count down Column Sam via OfficeKB.com Excel Worksheet Functions 8 October 4th 05 04:37 PM
Count Intervals of 2 Numeric values in same Row and Return Count across Row Sam via OfficeKB.com Excel Worksheet Functions 12 September 24th 05 10:58 PM
Count Intervals of Filtered TEXT values in Column and Return Count across a Row Sam via OfficeKB.com Excel Worksheet Functions 9 July 31st 05 03:37 AM


All times are GMT +1. The time now is 10:35 PM.

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"