Prev: Recent documents don't display
Next: how do I delete documents from the start list in word and excel?
From: Pearl on 17 Apr 2010 15:07 I would like to find a formula that calculates the amount of emails i receive, daily, weekly, monthly, and yearly -- pearl
From: JLatham on 17 Apr 2010 16:13
Assuming the total number of emails in A1 and the beginning date for the period in B1: =A1/(YEAR(NOW())-YEAR(B1)+1) gives average per year =A1/INT(NOW() - B1) gives average per day =A1/INT(NOW() - B1)*7 gives average per week =A1/(((YEAR(NOW())-YEAR(B1))*12)+MONTH(NOW())) will give you average per month "Pearl" wrote: > I would like to find a formula that calculates the amount of emails i > receive, daily, weekly, monthly, and yearly > -- > pearl |