Hi there, try this : | makeresults | eval alert_value=1060, BatteryAge=strftime(alert_value, "%m months %d days") this will return: but not sure you then can use it in a single value panel. Just give it a try. Hope this helps ... Cheers, MuS Update: This is based on the simple assumption every month has 4 weeks, because I'm not a mathematician nor scientist 😉 | makeresults | eval alert_value=1060, secs=alert_value*86400, months=round(secs/604800), days=round(alert_value - ((secs- (secs/604800)) / 60 /60 /24)) , alert_value = months ." months ". days ." days"
... View more