MovingCorr
Syntax
MovingCorr([Number Column 1], [Number Column 2], above, below)
📘
Example
Here, the **above** argument is 4, so the correlation between [Total Weekly Sales] and [Total Quantity Sold] is computed for the previous 4 weeks. Because the **below** argument is not specified, it defaults to 0 and no future weeks are considered.

```
MovingCorr([Weekly Quantity Sold], [Total Weekly Sales], 0, 4)

Last updated
Was this helpful?