Sunshine8790
Board Regular
- Joined
- Jun 1, 2021
- Messages
- 86
- Office Version
- 365
- Platform
- Windows
I have headers in row 1, so all my data starts in row 2.
In column AG, specifically beginning in AG2, I have data showing in this format: Jan 1, 1998 12:00:00 AM
In AH2 I have:
It displays: Jan 1, 1998
All good so far, except that I need to find a way to separate the month and day in the next 2 cells.
So in AI2 I want it to display "Jan", and in AJ2 I want it to display "1"
However, when I try
in AI2, it displays "1". Technically correct as January is the 1st month but I want it to say Jan.
Any help on this one would be appreciated.
In column AG, specifically beginning in AG2, I have data showing in this format: Jan 1, 1998 12:00:00 AM
In AH2 I have:
Excel Formula:
=TEXT(AG2,"dd/mmm/yyyy")
All good so far, except that I need to find a way to separate the month and day in the next 2 cells.
So in AI2 I want it to display "Jan", and in AJ2 I want it to display "1"
However, when I try
Excel Formula:
=IF(AH2="","",MONTH(AH2))
Any help on this one would be appreciated.