Help

Designing a chart on an interface, by month, irrelevant of year.

Solved
Jump to Solution
329 5
cancel
Showing results for 
Search instead for 
Did you mean: 
EllieBailey
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi,

I have a field with created dates. I would like to be able to create a chart that shows this data, grouping by the month of the created date. However I want the year to be irrelevant. For example, March 2024 and March 2022 to be shown in the same group within the chart.

I have created a new field with a formula to show the month only which works perfectly. But then when I create a chart on the interface, they are in alphabetical order and not date order which is not want we want.

Can't think of a way to make the chart display the months in date order, or another way for this all to work. Any help is appreciated!

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

What if you used a single select instead?  And we'd populate the single select with an automation that pasted the formual value into the select field

Screenshot 2024-06-04 at 10.40.43 PM.png

Screenshot 2024-06-04 at 10.41.04 PM.png

Screenshot 2024-06-04 at 10.41.09 PM.png

 

Link to base   

See Solution in Thread

5 Replies 5
TheTimeSavingCo
18 - Pluto
18 - Pluto

What if you used a single select instead?  And we'd populate the single select with an automation that pasted the formual value into the select field

Screenshot 2024-06-04 at 10.40.43 PM.png

Screenshot 2024-06-04 at 10.41.04 PM.png

Screenshot 2024-06-04 at 10.41.09 PM.png

 

Link to base   

Here are some options.

Have the formula return a month as a number instead of the month name.

MONTH({date field})



Have the formula return a text string, but preface the string with the two digit month number.

DATETIME_FORMAT({date field}, "MM MMM")


Have the formula return a date value for the first of the month in a fixed year.

DATETIME_PARSE(
  MONTH({date field}) & "/1/2024",
  "M/D/YYYY"
)

 

I thought this too, but the issue is the month number is still ordered alphabetically rather than numerically. 

Ooooh, I like this. I am trying to set up the automation but I am unsure how to make it do all previous records? I've got the trigger set to if the single select field is blank. Please may you help, which automation did you use?

Thanks so much!

I've figured this all out now. Thank you so much!