I would like to find a formula that calculates the amount of emails i
receive, daily, weekly, monthly, and yearly
--
pearl
|
|
0
|
|
|
|
Reply
|
Utf
|
4/17/2010 7:07:01 PM |
|
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
|
|
0
|
|
|
|
Reply
|
Utf
|
4/17/2010 8:13:01 PM
|
|