Timing sections | XM Community
Skip to main content

I am trying to calculate the total time that participants took to complete each section of my survey.

My current method is to create a field and use the Formula function to sum the individual timings for each question in the section. This is giving me what I’m after, but the next few sections have over 40 timing elements to be summed which will each need a letter and to be individual selected.

Is there a better way to do this?

Thank you.

You can use timing question for question in the block


@ben_1193,

In the survey flow, set an embedded data field with the start time before the section:

start = ${e://Field/Q_TotalDuration}

After the section, calculate the time for the section:

section1 = $e{ e://Field/Q_TotalDuration - e://Field/start }


Leave a Reply