Calculate time between "Begin Date & Time" and "End Date & Time" fields

Issue #788 resolved
Former user created an issue

Hi, we're trying to add a JWT field that could calculate time between "Begin Date & Time" and "End Date & Time", and present it in days then hours then minutes if possible.

Can you help us with the proper expression for that?

Comments (3)

  1. Fidel Castro Armario repo owner

    Hi @amishenin_ha,

    You can use a "Calculated Number Field" with the following configuration:

    Captura de pantalla 2017-09-07 a las 22.25.32.png

    Math-Time expression is:

    {bbbbb} != null AND {eeeee} != null ? {eeeee} - {bbbbb} : null
    

    replacing bbbbb with field code for Begin Date & Time, and eeeee with field code for End Date & Time.

  2. Log in to comment