csv file does not include all data

SUP (Stand Up Paddling) activity include data such as stroke rate, distance per stroke, avg moving pace.

I need to build a progress report based on these parameters. any idea how do I produce such a report?

Thanks

  • SUP (Stand Up Paddling) activity include data such as stroke rate, distance per stroke, avg moving pace.

    I suppose you wanted to write that the CSV files does not include those values. That's true. However it contains the Total Strokes, Distance, and Moving Time, hence you can calculate the data alone, for example using an Excel formula or macro:

    • Stroke Rate = Total Strokes / Moving Time
    • Distance per Stroke = Distance / Total Strokes
    • Moving Pace = Moving Time / Distance