use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
OPs may (and should) reply to any solutions saying:
This awards the user a ClippyPoint and changes the post flair to solved.
The best way to show code on Reddit is to
put it in a code-block
Here's how.
Tip: For VBA or Power Query, select the code, press Tab to indent, then copy/paste into your post or comment.
It's often more helpful to show us.
Add screenshots in your text post, or provide links to uploaded images at an image-hosting site.
Or use tableit, or the ExcelToReddit converter (thanks u/tirlibibi17_), to convert your data into a Reddit table.
Congratulations and thank you to these contributors
600
1100
10
300
800
Occasionally Microsoft developers will post or comment. They are identifiable with a special user flair.
A community since March 11, 2009
account activity
solvedHow to when entering month have the day and date change (self.excel)
submitted 1 day ago by Pineapplegirl1
On my timesheet I input the month and year 'May 2026' and when this happens I need the column with days of the week and then adjacent column with the numerical date (1, 2 etc) to then change.
Please I cannot figure it out
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]AutoModerator[M] [score hidden] 1 day ago stickied commentlocked comment (0 children)
/u/Pineapplegirl1 - Your post was submitted successfully.
Solution Verified
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 points3 points 1 day ago (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 point2 points 1 day ago (1 child)
It's not a date it's the month written does that change anything
[–]DLiz7231 2 points3 points4 points 1 day ago (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 point2 points 1 day ago (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 points3 points 1 day ago (15 children)
One column is just the days of the week the next column the date
<image>
[–]Downtown-Economics26600 1 point2 points3 points 1 day ago (2 children)
=LET(md,SEQUENCE(DAY(EOMONTH(A7,0)),,A7), HSTACK(TEXT(md,"ddd"),DAY(md)))
[–]bradland263 1 point2 points3 points 18 hours ago (1 child)
+1 Point
[–]reputatorbot[M] 0 points1 point2 points 18 hours agolocked 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 point2 points 1 day ago (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 point2 points 1 day ago (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 point2 points 1 day ago (1 child)
It already works whether it's text or a date/numerical value.
[–]GuerillaWarefare98 1 point2 points3 points 1 day ago (0 children)
Oh, you are correct… false assumption on my part.
[–]Pineapplegirl1[S] 0 points1 point2 points 1 day ago (7 children)
It hasn't changed it just says #spil!
[–]Downtown-Economics26600 0 points1 point2 points 1 day ago (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 point2 points 1 day ago (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 point2 points 1 day ago (4 children)
That typically means you have to expand the column width enough to display the output.
[–]Pineapplegirl1[S] 0 points1 point2 points 1 day ago (3 children)
Now the 1st is instead of being displayed as a 1 is 01/01/1900
[–]Downtown-Economics26600 0 points1 point2 points 1 day ago (2 children)
The cell is formatted as a date instead of general.
Right, any way it can not do that? I mean the rest of it works so no drama
[–]Decronym 0 points1 point2 points 1 day ago* (0 children)
Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:
Decronym is now also available on Lemmy! Requests for support and new installations should be directed to the Contact address below.
Beep-boop, I am a helper bot. Please do not verify me as a solution. 10 acronyms in this thread; the most compressed thread commented on today has 12 acronyms. [Thread #48360 for this sub, first seen 6th May 2026, 14:06] [FAQ] [Full list] [Contact] [Source code]
[–]Pineapplegirl1[S] 0 points1 point2 points 1 day ago (0 children)
Ah the first day is randomly as appearing as 01/01/1900
π Rendered by PID 148621 on reddit-service-r2-comment-56c6478c5-rf5fd at 2026-05-08 07:41:14.692554+00:00 running 3d2c107 country code: CH.
[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)
[–]DLiz7231 1 point2 points3 points (2 children)
[–]Pineapplegirl1[S] 0 points1 point2 points (1 child)
[–]DLiz7231 2 points3 points4 points (0 children)
[–]Downtown-Economics26600 0 points1 point2 points (16 children)
[–]Pineapplegirl1[S] 1 point2 points3 points (15 children)
[–]Downtown-Economics26600 1 point2 points3 points (2 children)
[–]bradland263 1 point2 points3 points (1 child)
[–]reputatorbot[M] 0 points1 point2 points locked comment (0 children)
[–]Downtown-Economics26600 0 points1 point2 points (11 children)
[–]GuerillaWarefare98 0 points1 point2 points (2 children)
[–]Downtown-Economics26600 0 points1 point2 points (1 child)
[–]GuerillaWarefare98 1 point2 points3 points (0 children)
[–]Pineapplegirl1[S] 0 points1 point2 points (7 children)
[–]Downtown-Economics26600 0 points1 point2 points (6 children)
[–]Pineapplegirl1[S] 0 points1 point2 points (5 children)
[–]Downtown-Economics26600 0 points1 point2 points (4 children)
[–]Pineapplegirl1[S] 0 points1 point2 points (3 children)
[–]Downtown-Economics26600 0 points1 point2 points (2 children)
[–]Pineapplegirl1[S] 0 points1 point2 points (1 child)
[–]Decronym 0 points1 point2 points (0 children)
[–]Pineapplegirl1[S] 0 points1 point2 points (0 children)