How to show the exact date the story was added to a sprint?

Hi,
I want to show a table, first column is user story, and the second column is add sprint date of this story.
like this:
story | add current sprint date of story
A | Feb 23 2024
B | Feb 22 2024

Hi, @99Jintai

Welcom to the eazyBI community!

Please consider exploring the hidden measure “Transition to last timestamp,” together with the Sprint in a tuple.

This measure will allow to find the transition in specific fields, in this case, Sprint. Read more here Import issue change history

The formula should look something like this:

TimestampToDate(
  (
    [Measures].[Transition to first timestamp],
    [Transition Field].[Sprint]
  )
)

Kindly,
Ilze