Calculating what % of the month has passed thus far

alon

Board Regular
Joined
Apr 12, 2011
Messages
58
Hello dear forum members,

I was wondering if there's a way to calculate what % of the month has passed thus far. For instance, if August has 31 days and today is the 26th, 83% of the month has passed already.

Any ideas?

Thank you in advance :)
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
One way ...
Code:
=DAY(TODAY())/DAY(EOMONTH(TODAY(),0))
Format the cell as Percentage.
 
Upvote 0
Hi, thanks for your help but I'm getting "false"

It should work if you have a 2007 system or later. On earlier versions, you need to activate/install the Analysis Toolpak (ATP).

The following should work without ATP...

=DAY(TODAY())/DAY(DATE(YEAR(TODAY()),MONTH(TODAY())+1,1)-1)
 
Upvote 0
You know what guys, both work. It was just a weird error probably caused by copy-pasting from within the forum. Something went wrong there. Thank you both! :)
 
Upvote 0
Hello dear forum members,

I was wondering if there's a way to calculate what % of the month has passed thus far. For instance, if August has 31 days and today is the 26th, 83% of the month has passed already.

Any ideas?

Thank you in advance :)
This one's a few keystrokes shorter...

=DAY(NOW())/DAY(EOMONTH(NOW(),0))
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,533
Members
448,969
Latest member
mirek8991

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top