Release field on Story is not populated with the Release set on the SprintIssue Release field on Story is not populated with the Release set on the Sprint ResolutionOur Product team stated that this has not been implemented from our end and is currently considered expected behavior. If you need a way to implement this, it is pretty straightforward. You could do something like the following: New Business Rule on the Story [rm_story] table. Name: Set Story Release to Sprint Release Filter Conditions: Sprint | changes Advanced: true Insert: true Update: true Script: (function executeRule(current, previous) { current.release = current.sprint.release; })(current, previous);