Shortmeister1
Board Regular
- Joined
- Feb 19, 2008
- Messages
- 212
- Office Version
- 365
- 2016
- 2013
- 2010
- 2007
- 2003 or older
- Platform
- Windows
Merry Christmas all
My sample table looks like this:
A small formula using the new GROUPBY function.
The problem with this is that April becomes the first month in the year, whereas I want the year to start with January.
Easy to do in a Pivot table, but surely shouldn't be too difficult to replicate it using GROUPBY? (I don't want to create a helper column)
Any takers?
Thanks
Martin
My sample table looks like this:
Date |
16/05/2024 |
07/06/2024 |
11/06/2024 |
21/06/2024 |
01/07/2024 |
13/07/2024 |
23/07/2024 |
28/09/2024 |
29/09/2024 |
A small formula using the new GROUPBY function.
Excel Formula:
=GROUPBY(
TEXT(tblV[Date],"mmm-yy"),
TEXT(tblV[Date],"mmm-yy"),
COUNTA,0,0)
The problem with this is that April becomes the first month in the year, whereas I want the year to start with January.
Easy to do in a Pivot table, but surely shouldn't be too difficult to replicate it using GROUPBY? (I don't want to create a helper column)
Any takers?
Thanks
Martin