Hi @WHG
try the following script
otherwise you can do it manually using the same functions
names default to here (1);
dt = current data table ();
dt << New Column( "Duration",
Numeric,
"Continuous",
Format( "Best", 12 ),
Formula(
Date Difference(
:Date of Observation[1],
:Date of Observation,
"second"
)
)
);
let us know if it works