getRunRateNextMonth
Returns the run rate for the next month. It estimates the traffic of the next month.
If we are in July, it will calculate the number of sessions (for example) for the 31 days of the next Month (August) using an average (runs getAvgDailyTrafficFromWeek under the hood).
- lastWeeksTraffic: List of numbers that the function will receive as an input.
Important: The number needs to represent weekly traffic, not daily or monthly because those arguments will get divided by the number of days they represent.
i.e. One args gets divided by 7, two per 14 and so on..
- number: Traffic run rate for the total of days of the next monthcc
getRunRateNextMonth({B2 ; C2}) // { 2345 ; 2545}
// For a month of 31 days => 10827,85714
- Calculate the traffic run rate of your next month's traffic
Last modified 7mo ago