A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi TT30
Please try =IF(DAY(A1)<16,EOMONTH(A1,0),EOMONTH(A1,0)+15)
I hope this helps you and gives a solution to your problem
Regards
Jeovany
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi. I want to auto-fill dates down a column and have it populate with the 15th and ending day of the month only:
15-JAN-21,
31-JAN-21,
15-FEB-21,
28-FEB-21,
15-MAR-21,
31-MAR-21,
15-APR-21,
30-APR-21
When I attempt this, I get a fixed increment of 15 days which is not what I want occurring. Is this even possible?
Thanks!
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Answer accepted by question author
Hi TT30. I’m RN, an Independent Advisor and Microsoft user like you.
I'm sorry to hear about this issue.
Auto fill functions cannot handle the expected result you want. You will be needing a formula to achieve this one.
First in "A1" cell, input the "15-JAN-21".
Then please use formula below in "A2", afterwards drag this formula to the next row to compute for the next month and day.
=IF(DAY($A1)<=15,EOMONTH($A1,0),DATE(YEAR($A1),MONTH($A1+1),15))
TT30,
This perhaps:
=IF(DAY(A1)<16,MIN(A1+15,EOMONTH(A1,0)),EOMONTH(A1,0)+15)
For Feb it will give the last day, so 28 or 29.
Jan
Hi there Jan, Thanks so much for your reply. inputting your formula results in 30-JAN-21 in A2, but when copied down, produces 30-APR-22 in cell A3, the following line....
WOW! Are you ever clever my friend! Thanks!!
Challenge #2: is there a formula for the 15th and 30th of the month? I respect that Feb 28th and Feb 29th present a problem....
THANKS