Share via

Excel Help - Average rate of change

Anonymous
2023-12-22T15:57:06+00:00

If I have total calls taken per month for each month (Row 1, column A to L), how can I capture the average rate of change between each month as a percentage in row 1 column M?

Microsoft 365 and Office | Excel | Other | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Ashish Mathur 101.8K Reputation points Volunteer Moderator
    2023-12-22T23:04:36+00:00

    Hi,

    In cell M1, enter this formula

    =AVERAGE(B2:L2/A2:K2-1)

    For checking, i entered the formula =AVERAGE(B3:L3) in cell M2. As you can see, the answer is the same.

    Hope this helps.

    5 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2023-12-22T19:27:28+00:00

    Hello Omilio,

    I'm Ibhadighi and I'd happily help you with your question. In this forum, we are Microsoft consumers just like yourself.

    To calculate the average rate of change in Excel as a percentage between each month, you can use the following formula in Row 1, Column M:

    =AVERAGE((B1-A1)/A1, (C1-B1)/B1, (D1-C1)/C1, ..., (L1-K1)/K1) * 100

    This formula calculates the rate of change between each pair of months (like February to January, March to February, and so on), averages these rates, and then multiplies by 100 to convert it into a percentage.

    Here's a step-by-step breakdown:

    1. Calculate Rate of Change: (B1-A1)/A1 calculates the rate of change from January to February. Similarly, (C1-B1)/B1 calculates it for February to March, and so on.
    2. Average the Rates: AVERAGE(...) takes all these individual monthly rates of change and calculates their average.
    3. Convert to Percentage: Multiplying by 100 converts the average rate into a percentage.
    4. Enter the Formula: Place this formula in Cell M1 and it will give you the average rate of change across the months in percentage.

    Please remember to adjust the formula if your data starts from a different row or column.

    I hope this helps,

    Best Regards, Ibhadighi

    1 person found this answer helpful.
    0 comments No comments