I am trying to build a calendar wherein the days automatically update per the current day/month/year, but that the cells adjacent to those numbers are open for content.
Here is the formula I am using (thanks ExcelisFun!):
=IF(MONTH(COLUMNS($C3:D3)+(ROWS(D$3:D3)-1)*7-WDay+FOM)=Cmonth,COLUMNS($C3:D3)+(ROWS(D$3:D3)-1)*7-WDay+FOM,"")
As you can see, the cells populate with current day, month, etc. from my Names (see how this is done here: https://www.youtube.com/watch?v=TG0sfxahdsU&t=717s). When I open the spreadsheet, the current month and all its days are smiling back at me.
Sweet.
But I want more. What I am looking for is a calendar for planning blog posts that updates each month to the current month (like it does now), but that I can add post titles next to the days they'll be posting on. Is there someway to jump every other cell with this formula without losing the integrity of the formula?
Also, I don't want to have to have an array of any sort, so INDEX is out. I tried INT, but I can't get it to accept the formula.
Any thoughts? Thank you.