Smart Variables

Smart Variables

Enhance your Templates by incorporating Smart Variables for Date and Reporter.

Β 

Contents πŸ‘‡πŸΌ

Overview

Smart Variables allow you to automatically populate dates, and user information into your Jira issues. Use them in text fields like Summary or Description or structured field types like Date Pickers and User Pickers to reduce manual work and keep your issues consistent πŸͺ„

πŸ“… Date Smart Variables

You can use the base variable now or reference any Custom Date Variable (e.g., Start Date) to calculate dynamic dates on the fly.

Base Syntax - now

Use {{now}} to capture the exact moment an issue is generated from a template.

Operation

Syntax

Description

Operation

Syntax

Description

Days

now.plusDays(x) now.minusDays(x)

Add/subtract calendar days

Business Days

now.plusBusinessDays(x) now.minusBusinessDays(x)

Add/subtract working days (Mon–Fri)

Weeks

now.plusWeeks(x) now.minusWeeks(x)

Add/subtract weeks

Months

now.plusMonths(x) now.minusMonths(x)

Add/subtract months

πŸ’‘ PRO TIP: Combine multiple methods for precise dates.
For example: now.plusMonths(3).plusWeeks(1).minusDays(2)

Β 

NEW Relative Dates from Date Variables

Instead of relying only on now, you can perform math on date variables selected during issue creation.

  1. Set up a date field (e.g., Start date) to be filled in when the template is applied.

  2. Click "Use smart variable" in the field menu of another Date field or simply type it inside a Text field and add your math:

    • In a Date field (e.g., Due Date): Start date.plusDays(10)

    • In a Text field: {{Start date.plusDays(10)}}

Screen Recording 2026-07-22 at 21.58.49.mov

Example: If a user selects Sept 1 for Start Date, a Due Date configured with Start Date.plusDays(10) automatically sets to Sept 11.

Screen Recording 2026-07-22 at 22.03.41.mov

Β 

πŸ‘€ Reporter Smart Variable

Use {{reporter}} to automatically insert the user who applies the template.

  • In User Picker fields (Assignee, custom fields): Click "Use smart variable" in the field menu and enter reporter.

  • In Text fields (Summary, Description): Simply type {{reporter}} inline.

Screen Recording 2026-07-22 at 22.10.51.mov