getRunRateNextMonth

Overview

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).

Video Example

Arguments

  • 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..

  • In Google Sheets the arrays are created using this notion => {value1 ; value2 ; cell1 ; ...}

Expected Output

  • number: Traffic run rate for the total of days of the next monthcc

Text example

getRunRateNextMonth({B2 ; C2}) // { 2345 ; 2545}
// For a month of 31 days => 10827,85714 

Use cases

  • Calculate the traffic run rate of your next month's traffic

Last updated