so i have different "runs" in one dataset, while i could break them out, i'd like to leave them as one dataset the goal is as follows:
I'm not sure if I understand correctly how your data looks like, but Col Cumulative Sum should work. Take the sum of either 1 or :"Elapsed Time"n
Col Cumulative Sum(1, :"Run Number"n)
Hello,
I am also not sure I followed the question setup, but assuming Elapsed Time is a continuously running clock, and you want to calculate time within each "Run Number" from zero to the duration of the run- this slightly longer alternative will do it in the units of the elapsed time column.
:Elapsed Time - Col Minimum( :Elapsed Time, :Run Number )
This appears to me that you want automatically make a data table like this
You can use a formula for the Elapsed Time Column like the one shown below. It uses conditional If( ) and also the Lag( ) function to get the previous row's data from a column
example data table attached.