Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello, is there a formula I can use that will project revenue in real time
based on total sales at any given time. Basically, take my sales to date, consider how many days into a calendar year we are at presently and make a prediction to where the sales will be at the end of the calendar year based on sales to date. So, say I am 50 days into the calendar year and my sales are 500,000. Presently, I am averaging 10,000 per day and at this rate my sales for the year will be 3,650,000. Is there a formula that will take the revenue from cell1 and provide the annual projected revenue in cell2? I hope I am making sense. Thanks in advance to anyone that can assist. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Need formula help, Excel 2007, Thanks" wrote:
I hope I am making sense. Yes, you are. But whether or not it is a good way to project year-end revenue depends on the nature of the business. Usually not. Oh well, "give the customer what he wants".... :-) Is there a formula that will take the revenue from cell1 and provide the annual projected revenue in cell2? Assume that "cell1" is A1, with the YTD revenue. And assume that A2 contains the date of the YTD revenue in A1. Then put the following into "cell2": =round((date(1+year(today()),1,1)-date(year(today()),1,1)) *A1/(1+A2-date(year(today()),1,1)),0) Note: You could replace "(date(1+year(today()),1,1)-date(year(today()),1,1))" with simply 365 if you do not want to account for the potential leap day. You could replace "1+A2" or just A2 with TODAY() if you always project revenue on, respectively, the day after or the day of the date corresponding to the YTD revenue. ----- original message ----- "Need formula help, Excel 2007, Thanks" wrote: Hello, is there a formula I can use that will project revenue in real time based on total sales at any given time. Basically, take my sales to date, consider how many days into a calendar year we are at presently and make a prediction to where the sales will be at the end of the calendar year based on sales to date. So, say I am 50 days into the calendar year and my sales are 500,000. Presently, I am averaging 10,000 per day and at this rate my sales for the year will be 3,650,000. Is there a formula that will take the revenue from cell1 and provide the annual projected revenue in cell2? I hope I am making sense. Thanks in advance to anyone that can assist. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
provide the annual projected ...
Another option that provides a linear guess might be: (Adjust as necessary) =FORECAST(DATEVALUE("12/31/2010"),B1:B2,A1:A2) 3640000 A1: 1/1/2010 A2: 2/20/2010 B1: 0 B2: 500000 HTH Dana DeLouis On 2/13/10 7:27 PM, Need formula help, Excel 2007, Thanks wrote: Hello, is there a formula I can use that will project revenue in real time based on total sales at any given time. Basically, take my sales to date, consider how many days into a calendar year we are at presently and make a prediction to where the sales will be at the end of the calendar year based on sales to date. So, say I am 50 days into the calendar year and my sales are 500,000. Presently, I am averaging 10,000 per day and at this rate my sales for the year will be 3,650,000. Is there a formula that will take the revenue from cell1 and provide the annual projected revenue in cell2? I hope I am making sense. Thanks in advance to anyone that can assist. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need one formula for % change in TY vs LY revenue | Excel Worksheet Functions | |||
Project formula | Excel Worksheet Functions | |||
Need help with formula to forecast revenue | Excel Discussion (Misc queries) | |||
Formula Help... almost done with this project | Excel Worksheet Functions | |||
Formula Help... almost done with this project | Excel Worksheet Functions |