How do I calculate the percentage of email i receive over time

P

Pearl

I would like to find a formula that calculates the amount of emails i
receive, daily, weekly, monthly, and yearly
 
J

JLatham

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top