I would like to print the current year and quarter dynamically based on the date when the automation runs.
For example, if today's date is July 1, 2024, I want to update the summary of the subtask to include the current year and quarter:
{{now.year}} Q{{now.quarter}} This is a Subtask.
Current output : 2024 This is a Subtask.
Expected output: 2024 Q3 This is a Subtask.
Looks like I figured it out, in-case someone lands up with the same question in the future.
{{now.format("YYYY")}} Q{{now.format("Q")}} This is a Subtask.
The above logic should work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.