Problem:
My team is looking to group ideas by 'Project Start Date' which uses the 'date' field format in our 'list' view.
I want to end up with a backlog with swimlanes for each quarter:
This will help me visualise what's in progress currently, as well as what's prioritised for the next quarter.
What do we do now:
Questions:
Thanks for the suggestion @Stephane De Keerle . It's not something we've added yet as there are a bunch of complications. E.g. if you have ideas that have a single date, others with a month, others with a quarter - and you group by that field, then it needs to make sense and there are a bunch of corner cases. We've put it in the "to be figured out later" bucket while we focus on other things for the moment.
In the meantime, you could use a select field. You'd just need to maintain them manually and this could mean some double entries. But maybe you can go around that by configuring an automation rule (I haven't tried) that automatically updates this field whenever the date field is changed
Hi Tanguy,
Thanks for the explenation.
My 2 cents are in this case, to allow 2 types of Date fields, one is like the Date field you have now, and a new one, that will just be a date (not start and end, rather one single date, and in a date format, rather than the current text format).
I myself am struggling with grouping by Date fields (which honestly seems like a basic feature to me), and while researching here in the community and in other places on the web, it does seem like this issue is common to many other JPD users.
Please do update if it is already on the roadmap for you guys at JPD.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure if you're still looking for a solution, but I recently faced the same issue when migrating our marketing teams from Monday.com to JPD and subsequently developed a workaround, which is essentially an automated version of Tanguy's recommendation. Since I came across your post whilst initially researching the problem, I figure I'll describe my solution here in case it can help others until Atlassian officially add support for grouping by month.
The reason why grouping by date fields is currently not supported is uniquely in JPD, Atlassian store dates as a "start:xxx, end:xxx" string, not as an actual date. I suspect this is so they can support displaying the month or quarter name in the same date field, but it also means you can't use normal date manipulation functions, including automation. As such, the workaround involves extracting the date portion of the string, converting it into a date value, reformatting it as the month name, and then updating a picklist field with the month name value. That picklist field then becomes the "grouping" field. Thanks to @František in this thread for detailing the format of the JPD date fields.
Here's how to set it up:
Here's some screenshots of my rule for reference (ignore the audit log actions, I added those for testing):
Hope this is helpful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Harry Brant , I added a reference to your workaround in the FAQ
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Tanguy Crusson, glad it's useful!
Though "Harry Grant" might be a little confused why you've tagged him :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ha!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is a great idea Harry, thank you.
I faced a similar problem and ended up extracting the date from the date field into a variable that represents the date in a YYYYMMDD format, and I filter and group by that field.
It works nicely for our use case for now, though I think your suggestion might be more classy visually and less error prone (not dealing with large numbers like mine).
In our scenario, we have a release twice a month (that is regularly on Mondays every 2 weeks). Do you have any suggestion on how to use your idea, but be able to name the 2 releases as "Jan 1st release" and "Jan 2nd release" for example?
Also wondering if you take into account different years (meaning the difference between Jan 2024 and Jan 20205 fr example).
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.