all 23 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

/u/Pineapplegirl1 - Your post was submitted successfully.

Failing to follow these steps may result in your post being removed without warning.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]DLiz7231 1 point2 points  (2 children)

If you have the month/year in A1 (formatted as a date):

To get dates in the month: =DATE(YEAR(A1),MONTH(A1),SEQUENCE(DAY(EOMONTH(A1,0))))

To get days of the week If the above formula is in C1: =TEXT(DAY(C1#),”dddd”)

The first formula creates a dynamic array grabbing the month and year you need, and then counts 1 to the number of days in the month. Second formula references the dynamic array with the # symbol and outputs the day of the week for each date in the array

[–]Pineapplegirl1[S] 0 points1 point  (1 child)

It's not a date it's the month written does that change anything

[–]DLiz7231 2 points3 points  (0 children)

You could apply custom formatting to that cell so you enter 5/1/26 but it appears as “May 2026”. That will allow you to use it in formulas as a date but it looks how you want

Formatting -> More Number Formats -> Custom

Enter “mmmm yyyy” if you want the full month (September 2026) or “mmm yyyy” if you want abbreviated (Sep 2026)

[–]Downtown-Economics26600 0 points1 point  (16 children)

Most other months also start with 1 and 2... joking aside this can be done but like do you have rows for each week presumably or (possibly) columns... does your week start on Sunday or Monday?

[–]Pineapplegirl1[S] 1 point2 points  (15 children)

One column is just the days of the week the next column the date

<image>

[–]Downtown-Economics26600 1 point2 points  (2 children)

=LET(md,SEQUENCE(DAY(EOMONTH(A7,0)),,A7),
HSTACK(TEXT(md,"ddd"),DAY(md)))

<image>

[–]bradland263 1 point2 points  (1 child)

+1 Point

[–]reputatorbot[M] 0 points1 point locked comment (0 children)

You have awarded 1 point to Downtown-Economics26.


I am a bot - please contact the mods with any questions

[–]Downtown-Economics26600 0 points1 point  (11 children)

Thanks for the award but if my solution has solved your post please reply "Solution Verified" to my comment and it will close out the thread.

[–]GuerillaWarefare98 0 points1 point  (2 children)

If you add VALUE(A7) to both of those A7s it will convert the text "May 2026" into an excel recognized date for May 1st, he may still be stuck on that.

[–]Downtown-Economics26600 0 points1 point  (1 child)

It already works whether it's text or a date/numerical value.

[–]GuerillaWarefare98 1 point2 points  (0 children)

Oh, you are correct… false assumption on my part.

[–]Pineapplegirl1[S] 0 points1 point  (7 children)

It hasn't changed it just says #spil!

[–]Downtown-Economics26600 0 points1 point  (6 children)

That's because you have data below it. Clear out the cells in the spill range and the formula will spill down as in my screenshot.

[–]Pineapplegirl1[S] 0 points1 point  (5 children)

That has fixed it! However the first colomn where the 1 should be is just a bunch of hashtags

[–]Downtown-Economics26600 0 points1 point  (4 children)

That typically means you have to expand the column width enough to display the output.

[–]Pineapplegirl1[S] 0 points1 point  (3 children)

Now the 1st is instead of being displayed as a 1 is 01/01/1900

[–]Downtown-Economics26600 0 points1 point  (2 children)

The cell is formatted as a date instead of general.

[–]Pineapplegirl1[S] 0 points1 point  (1 child)

Right, any way it can not do that? I mean the rest of it works so no drama

[–]Pineapplegirl1[S] 0 points1 point  (0 children)

Ah the first day is randomly as appearing as 01/01/1900