Skip to main content
Skip table of contents

Visual progress of work item

Return a visual progress bar depending on a work item status.

Configuration

Create a Custom smart text field and use the General parsing mode.

Expression

CODE
%{%{issue.status} = "Open" ? "🟩🟩🟩🟩🟩"  : 
( %{issue.status} = "Planning" ? "🟩🟩⬜️⬜️⬜️" : 
( %{issue.status} = "In Progress" ? "🟩🟩🟩⬜️⬜️" : 
( %{issue.status} = "In Review" ? "🟩🟩🟩🟩⬜️" : 
( %{issue.status} = "Done" ? "🟩🟩🟩🟩🟩" :
"⬜️⬜️⬜️⬜️⬜️" ))))}

Please, replace the status names as well as the completion emojis with the ones of your choice. Any status not included in the sequence will return 1.

image-20250916-111748.png

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.