Formula for Date Name

Iccreamann21

New Member
Joined
Sep 25, 2013
Messages
41
Office Version
  1. 365
Platform
  1. Windows
Hello, Good Morning, Happy 2024,

Quick questions, the data I am exporting has the column "Closed Date" and what I'm looking to do is extract just the name of the month.

Closed DateMonth Name
12.21.2023December


Currently, I am doing this way and it works, but Im trying to eliminate having to add the cheater cell and the AA:AB table.

Closed DateCheaterMonth Name
12.21.2023=left(A2,2)=vlookup(B2,AA:AB,2,0) <- then create a table in column in AA:AB


Any help will be appreciated. Thank you
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Maybe, assuming your date is in cell A2. If the date is in cell A1, please change the cell reference.
VBA Code:
=TEXT(A2,"mmmm")
 
Upvote 0
Maybe, assuming your date is in cell A2. If the date is in cell A1, please change the cell reference.
VBA Code:
=TEXT(A2,"mmmm")

When I try using that formula it just replicates whats in A2

Closed DateMonth Name
12.21.202312.21.2023
 
Upvote 0
just format the cell you want the date's month in as mmmm:
Book1
ABC
1Closed Datekeep date valueas text
212.21.2023DecemberDecember
Sheet3
Cell Formulas
RangeFormula
B2B2=A2
C2C2=TEXT(A2,"mmmm")
 
Upvote 0
Hmmm oddly enough I'm unable to replicate the same result.

1704810123238.png
 
Upvote 0
At work, I can't use XL2BB.

I did not. What I have is 12/21/2023 Date format. Cell A2 is in general format, still showing "December" as OP wanted. Cell D1 just includes
VBA Code:
=FORMULATEXT(B1)

Edit. I see my mistake. OP is using 12.21.2023 as opposed to 12/21/2023. My bad!
 
Upvote 0
Closed DateColumn4
January
12.21.202312.21.2023
12.21.202312.21.2023
January
January
12.20.202312.20.2023
12.19.202312.19.2023
12.19.202312.19.2023
12.19.202312.19.2023


First time trying out XL2bb.. Hopefully this helps
 
Upvote 0

Forum statistics

Threads
1,215,105
Messages
6,123,114
Members
449,096
Latest member
provoking

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