#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Current Run Rate

I am trying to calculate the current sales rate. If I have $5000 in sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current monthly
rate (Feb 29th).
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Current Run Rate

If you have a version of Excel 2007 and have the Analysis Toolpack installed
or have Excel 2007, to determine the number of days in the current month you
can use:
=EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)
So if your $5000 is in A1 and your 3 is in A2 in A3 put:
=A1/A2*(EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)) to calculate
$48333.33 for February.

Tyro

"Coley" wrote in message
...
I am trying to calculate the current sales rate. If I have $5000 in sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current
monthly
rate (Feb 29th).



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Current Run Rate

Correction. If you have a version of Excel 2007 should read: If you have a
version of Excel prior to Excel 2007 ..........

Tyro

"Tyro" wrote in message
t...
If you have a version of Excel 2007 and have the Analysis Toolpack
installed or have Excel 2007, to determine the number of days in the
current month you can use:
=EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)
So if your $5000 is in A1 and your 3 is in A2 in A3 put:
=A1/A2*(EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)) to calculate
$48333.33 for February.

Tyro

"Coley" wrote in message
...
I am trying to calculate the current sales rate. If I have $5000 in sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current
monthly
rate (Feb 29th).





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Current Run Rate

Outstanding! Works great.

"Tyro" wrote:

Correction. If you have a version of Excel 2007 should read: If you have a
version of Excel prior to Excel 2007 ..........

Tyro

"Tyro" wrote in message
t...
If you have a version of Excel 2007 and have the Analysis Toolpack
installed or have Excel 2007, to determine the number of days in the
current month you can use:
=EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)
So if your $5000 is in A1 and your 3 is in A2 in A3 put:
=A1/A2*(EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)) to calculate
$48333.33 for February.

Tyro

"Coley" wrote in message
...
I am trying to calculate the current sales rate. If I have $5000 in sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current
monthly
rate (Feb 29th).






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Current Run Rate

You're welcome.

Tyro

"Coley" wrote in message
...
Outstanding! Works great.

"Tyro" wrote:

Correction. If you have a version of Excel 2007 should read: If you have
a
version of Excel prior to Excel 2007 ..........

Tyro

"Tyro" wrote in message
t...
If you have a version of Excel 2007 and have the Analysis Toolpack
installed or have Excel 2007, to determine the number of days in the
current month you can use:
=EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)
So if your $5000 is in A1 and your 3 is in A2 in A3 put:
=A1/A2*(EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)) to calculate
$48333.33 for February.

Tyro

"Coley" wrote in message
...
I am trying to calculate the current sales rate. If I have $5000 in
sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current
monthly
rate (Feb 29th).









  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Current Run Rate

Another formula to determine the number of days in the current month is:

=DAY(DATE(YEAR(TODAY()),MONTH(TODAY())+1,0))

So with $5000 in A1 and 3 in A2, put
=A1/A2*DAY(DATE(YEAR(TODAY()),MONTH(TODAY())+1,0)) will calculate 48333.33

Tyro


"Coley" wrote in message
...
I am trying to calculate the current sales rate. If I have $5000 in sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current
monthly
rate (Feb 29th).



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Current Run Rate

to determine the number of days in the current month you can use:
=EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)


Try this:

=DAY(EOMONTH(NOW(),0))

=A1/A2*DAY(EOMONTH(NOW(),0))

--
Biff
Microsoft Excel MVP


"Tyro" wrote in message
t...
If you have a version of Excel 2007 and have the Analysis Toolpack
installed or have Excel 2007, to determine the number of days in the
current month you can use:
=EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)
So if your $5000 is in A1 and your 3 is in A2 in A3 put:
=A1/A2*(EOMONTH(TODAY(),0)-EOMONTH(EDATE(TODAY(),-1),0)) to calculate
$48333.33 for February.

Tyro

"Coley" wrote in message
...
I am trying to calculate the current sales rate. If I have $5000 in sales
after 3 days ($1666.67/day) I want to show $48333.33 for the current
monthly
rate (Feb 29th).





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
Having the current time inserted w/o updating the current time sherobot Excel Worksheet Functions 2 October 2nd 06 05:05 PM
Prime rate/Liber rate into sheet automatically? Nixt Excel Discussion (Misc queries) 0 January 21st 06 09:49 PM
Real RATE of return using =RATE illusive, inflation adjusted inflo Pro - Land Excel Worksheet Functions 4 November 1st 05 03:06 AM
Can I automatically enter the current date or current time into a Ben New Users to Excel 7 October 19th 05 03:38 PM
APR - Annual Percentage Rate to Actual Interest Rate Safu Excel Worksheet Functions 9 May 18th 05 05:03 AM


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