You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
I want to know how many days have lapsed in a month, every month, as a percentage. So far we are doing it week by week, ie after the first week has gone we say that 25% of the month has gone. We need it to be more acurate. The problem we are having is that each month has a different amount of days. Is there a formula we can use for this and one for the percentage of the month left?
Thank you
Anita
Mike H
unread,
Sep 9, 2009, 2:52:15 PM9/9/09
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
=MONTH(A1)/DAY(DATE(YEAR(A1),MONTH(A1)+1,1)-1)
HTH, Ryan---
-- Ryan--- If this information was helpful, please indicate this by clicking ''Yes''.
simonj...@gmail.com
unread,
Jul 14, 2015, 11:21:47 AM7/14/15
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
That worked great for me thanks
cdr.ck...@gmail.com
unread,
Aug 30, 2016, 11:13:59 PM8/30/16
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Try this formula ... may be simpler ...
=day(A1)/day(eomonth(a1,0))
On a similar vein, to determine the percentage remaining in a month ...
=1-day(A1)/day(eomonth(a1,0))
Chuck
carrasc...@gmail.com
unread,
Nov 18, 2017, 1:10:04 PM11/18/17
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
HI Mike, Thank you for sharing. I'm in need of the same thing. How can it be linked to a date? One cell with the beginning date and one end date. Thank you