To convert the exported general format (e.g., 11520) back into hh:mm:ss format, total seconds, total minutes, or decimal hours in Excel, you can use various formulas or functions.
Convert to hh:mm:ss Format: You can use the TIME function in Excel to convert the total seconds back into hh:mm:ss format.
=TIME(INT(A1/3600), INT((A1/60)-INT(A1/3600)*60), MOD(A1, 60))
Convert to Total Seconds: Total seconds are already given. If you want to leave them as they are, no conversion is needed.
Convert to Total Minutes: To convert the total seconds to total minutes, you can divide the number by 60.
Convert to Decimal Hours: To convert the total seconds to decimal hours, divide the number by 3600 (number of seconds in an hour).
These formulas assume that the exported data is in cell A1. Replace A1 with the appropriate cell reference containing your data.
Once you've entered these formulas, you can format the cells as needed to display the values in the desired format (e.g., hh:mm:ss for time, or general format for total seconds, total minutes, or decimal hours).