Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Help needed (idiot onboard)

Hi All,

I hope someone can help me with this; I've bashed a good-sized dent
in my desktop and would like to stop before the desk breaks
altogether.

I have a spreadsheet that I track my server hard drive free space on.
It does some basic averaging on consumption and the like. What I
would really like to be able to do is forecast when I am going to run
out of space.

I know the basics of what I want to do and I am sure I have all of the
parts, I just don't know how to cobble them together in a cell and
have it spit out my answer.

Here is what I have:

- Column A = today's date
- Column B = free bytes on HD
- Column C = byte change from yesterday (Btoday-Byesterday)
- A standalone cell that averages Column C (average daily consumption)

So; it should be a relatively simple FORECAST or TREND to tell me that
in x-number of days, I will reach x-number of bytes available.

If some kind soul is willing to help me along on this path, the amount
of gratitude poured forth would be excessive.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,104
Default Help needed (idiot onboard)

Hi,
We have to assume the data is linear ( a plot of date vs free sapce gives a
straight line)
So y=mx +b (something about your words makes you sound British, if so read
y=mx +c) - the thing you learned in school. If you knew m and b then for to
compute an X-value for a specified Y-value you need X= (Y-B)/M

You can get M with SLOPE and B with INTERCEPT. so if you dates are in
A1:A100 ans space values in B1:B100 then with the required space value in F1
use
=(F1-INTERCEPT(B1:B100,A1:A100)/SLOPE(B1:B100,A1:A100)

If the data is non linear you will need to use LINEST (see
www.stfx.ca/people/bliengme/ExcelTips ). Alternatiively, make a chart, add a
trendline and use the exend feature of trendline to see where it get to the
specified x-value.
Best \wishes
Bernard



"Anonymous Coward" wrote in message
m...
Hi All,

I hope someone can help me with this; I've bashed a good-sized dent
in my desktop and would like to stop before the desk breaks
altogether.

I have a spreadsheet that I track my server hard drive free space on.
It does some basic averaging on consumption and the like. What I
would really like to be able to do is forecast when I am going to run
out of space.

I know the basics of what I want to do and I am sure I have all of the
parts, I just don't know how to cobble them together in a cell and
have it spit out my answer.

Here is what I have:

- Column A = today's date
- Column B = free bytes on HD
- Column C = byte change from yesterday (Btoday-Byesterday)
- A standalone cell that averages Column C (average daily consumption)

So; it should be a relatively simple FORECAST or TREND to tell me that
in x-number of days, I will reach x-number of bytes available.

If some kind soul is willing to help me along on this path, the amount
of gratitude poured forth would be excessive.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Help needed (idiot onboard)

If you are assuming a linear progression, then

y = ax + b

use slope and intercept with your data to get a and b respectively.

set y equal to zero and solve for x


0 = ax + b
ax = -b
x = -b/a


Assume you have 200 gigabytes and the slope comes out to be -1.3 GB per day.
(a = -1.3GB)

b = 200 (for the date you installed the drive -

x = -200/-1.3 = 153.8 days

--
Regards,
Tom Ogilvy



"Anonymous Coward" wrote in message
m...
Hi All,

I hope someone can help me with this; I've bashed a good-sized dent
in my desktop and would like to stop before the desk breaks
altogether.

I have a spreadsheet that I track my server hard drive free space on.
It does some basic averaging on consumption and the like. What I
would really like to be able to do is forecast when I am going to run
out of space.

I know the basics of what I want to do and I am sure I have all of the
parts, I just don't know how to cobble them together in a cell and
have it spit out my answer.

Here is what I have:

- Column A = today's date
- Column B = free bytes on HD
- Column C = byte change from yesterday (Btoday-Byesterday)
- A standalone cell that averages Column C (average daily consumption)

So; it should be a relatively simple FORECAST or TREND to tell me that
in x-number of days, I will reach x-number of bytes available.

If some kind soul is willing to help me along on this path, the amount
of gratitude poured forth would be excessive.



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Help needed (idiot onboard)

Hi
I know how you feel - I've been there.
Sometimes we try to solve a simple thing with complicated
solutions. Dont look for FORECASTs or TRENDs. Give you an
example:
If you have 100 apples and you eat an average of 2 a day
then devide the available apples by the daily consumption
i.e. 100\2 = 50 days before you ran out apples!
In your case
Devide the free bytes on HD (Column B) by the result of
the standalone cell with the average daily consumption.
I would use the "\" instead of the "/" devider to get an
integer answer.

Good luck .

George



-----Original Message-----
Hi All,

I hope someone can help me with this; I've bashed a good-

sized dent
in my desktop and would like to stop before the desk

breaks
altogether.

I have a spreadsheet that I track my server hard drive

free space on.
It does some basic averaging on consumption and the

like. What I
would really like to be able to do is forecast when I am

going to run
out of space.

I know the basics of what I want to do and I am sure I

have all of the
parts, I just don't know how to cobble them together in a

cell and
have it spit out my answer.

Here is what I have:

- Column A = today's date
- Column B = free bytes on HD
- Column C = byte change from yesterday (Btoday-

Byesterday)
- A standalone cell that averages Column C (average daily

consumption)

So; it should be a relatively simple FORECAST or TREND to

tell me that
in x-number of days, I will reach x-number of bytes

available.

If some kind soul is willing to help me along on this

path, the amount
of gratitude poured forth would be excessive.
.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Help needed (idiot onboard)

Thanks for the help with this! Once I get my data tweaked around a
little, it should fit the model quite nicely.

Have a safe and happy Christmas...



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
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
How to make a spreadsheet idiot-proof Howard Excel Worksheet Functions 6 September 9th 09 08:42 PM
I am an Idiot Woman Pepper New Users to Excel 18 January 1st 09 01:10 AM
Onboard Excel help...teach a man to fish... NoMagic@Certegy Excel Discussion (Misc queries) 3 November 1st 06 04:06 PM
I want 148:30 converted to 148.5 and I am an idiot element04 Excel Discussion (Misc queries) 1 July 13th 06 01:41 AM
Excel Idiot Needs Formula Help!! Donna123 Excel Worksheet Functions 1 September 5th 05 05:28 AM


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