Help

Grouping dated records by Month-Year

Topic Labels: Dates & Timezones Formulas
Solved
Jump to Solution
771 3
cancel
Showing results for 
Search instead for 
Did you mean: 
stevenjo57
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi. Thanks in advance for any help.

I'd like to take a table with dated records in them, then group them by month-Year.

How do I take a date format and make a field that will allow me to show the latest records at the top for a particular month? For example:

2024 - 2 (all records follow)
2024 - 1 (all records follow)
2023 - 12 (all records follow)
etcetera

Then of course as we add newer records at the top, they'll continue.

Thanks!

 

 

1 Solution

Accepted Solutions
Blake_D
6 - Interface Innovator
6 - Interface Innovator

You could create a "Month-Year" formula field using your "Date" field and the formula would be DATETIME_FORMAT({Date}, 'YYYY - M') then sort the table by date in descending order to ensure latest records are at the top, then group the table by the "Month-Year" field. The view would look like this:

 

  • 2024 - 2 
    • Record 1 (2024-02-28)
    • Record 2 (2024-02-15)
  • 2024 - 1
    • Record 3 (2024-01-30)
    • Record 4 (2024-01-20)
  • 2023 - 12
    • Record 5 (2023-12-25)
    • Record 6 (2023-12-10)

I hope this helps. If you have any questions feel free to ask. 

 

See Solution in Thread

3 Replies 3
Blake_D
6 - Interface Innovator
6 - Interface Innovator

You could create a "Month-Year" formula field using your "Date" field and the formula would be DATETIME_FORMAT({Date}, 'YYYY - M') then sort the table by date in descending order to ensure latest records are at the top, then group the table by the "Month-Year" field. The view would look like this:

 

  • 2024 - 2 
    • Record 1 (2024-02-28)
    • Record 2 (2024-02-15)
  • 2024 - 1
    • Record 3 (2024-01-30)
    • Record 4 (2024-01-20)
  • 2023 - 12
    • Record 5 (2023-12-25)
    • Record 6 (2023-12-10)

I hope this helps. If you have any questions feel free to ask. 

 

Thanks so much! I'll try and let you know how it goes.

Hi Blake,

Seems to be working.  Thanks!