This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

run cadence zeros

Hi, I just compared 2 runs, one with Run pod and one without. The one without have zeros on cadence, probably when I lift my watch to look at it. Is there a way to eliminated the zeros for cadence? I did not find it on the owner Manuel nor on the watch itself. Thanks 

  • I don't think you can. Are you interested in seeing your average cadence disregarding zeros?

    I have a Connect IQ data field app that can show you that during a run, and also record the final value to the activity so you can look at it in Garmin Connect. It's called AppBuilder 5 and it's like Excel for your watch:

    [https://apps.garmin.com/en-US/apps/fd690281-9c22-4fee-a81e-3b7f39aa67c5]

    Use the following settings:

    Label: AVG CAD NO 0 (or whatever you want)
    Formula: norecord(); recordsummary(avg(nonzero(cadence)))
    Display Format: Auto
    Record Data to FIT file: Yes

    You can also filter low cadence values (not just 0s). For example, suppose I want to display the average cadence, excluding all cadence values less than 100:

    Label: AVG RUN CAD (or whatever)
    Formula: norecord(); recordsummary(avg(if (cadence lt 100, null, cadence)))