I would suggest opening an Idea on our Ideas Lab: https://genesyscloud.ideas.aha.io/ideas
Excel can most likely get you what you want. As long as the person using Excel has a locale that is consistent with the export's decimal separator (i.e., both use decimal comma or decimal point), the Excel will handle the separator appropriately given (at least with the two below I use as an example).
5d 15h 13m 30s format:
=INT($E2/1440)&"d " &
INT(MOD($E2,1440)/60)&"h " &
INT(MOD($E2,60))&"m " &
ROUND(MOD($E2*60,60),0) &"s"
HH:MM:SS:
=TEXT($E1/1440,"[h]:mm:ss")
------------------------------
Jay Langsford
VP, R&D
------------------------------