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

How to see total miles run on a device?

I have a new Fenix 6x and would like to be able to see a summary of all running activities ever recorded on the device.  Is this available on the Connect website, or android app?

  • You can check reports here: https://connect.garmin.com/modern/progress-summary

    Or summary on your profile: connect.garmin.com/modern/profile/[Name]

  • Thanks but I don't seen to be able to filter by device so I can't separate it out from my Edge 800. Is that possible, do you know? 

  • I think it's not possible.

  • Don't know if there is an option for that, but if you need to sum distance by device, you can use this script in web-browser console (F12).

    .

    The limit parameter is set to 200 latest activities, if you want to sum more, set limit higher.

    Replace the !!!DEVICE_ID!!! by your device id (copy a number from a link to settings for that device).

    The distance is not named, for me it's in meters, so you should check if this changes when choosing miles, if no then divide by 1.609.

    jQuery.getJSON(
        'https://connect.garmin.com/modern/proxy/activitylist-service/activities/search/activities?limit=200',
        function(act_list)
        {
            var distance = 0;
            act_list.forEach(
            function(act)
                {
                    if(act['deviceId'] === !!!DEVICE_ID!!!)
                    {
                        console.dir(act['activityId'], act['activityName'], act['startTimeLocal'], act['distance']);
                        distance += act['distance'];
                    }
                }
            );
            console.dir('Sum:', distance);
        }
    );