Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour,
je voudrais afficher le délai moyen dans un objet texte en format suivant hh:mm:ss j'ai essayé plusieurs fonction, aucune ne me donne le bon délai ,
Ci-joint le doc d'exemple.
Hi,
Dans ton .qvw tu as oublié de diviser par 86400 (nb de sec dans une journée). Il faut le rajouter :
='Délai moyen de communication' & chr(13) &
if(Len(Only(TOTAL Skill))>0,
Interval(sum(TotalDmcSec)/86400
/sum(AppelsPris), 'hh:mm:ss')
,
Interval(sum(TotalDmcSec)/86400
/sum(AppelsPris), 'hh:mm:ss')
)
Maybe it has to do with the number format (comma / point) is the number in seconds with fractiles after the comma? Try changing the thousand- and decianl separator..
Hi,
Dans ton .qvw tu as oublié de diviser par 86400 (nb de sec dans une journée). Il faut le rajouter :
='Délai moyen de communication' & chr(13) &
if(Len(Only(TOTAL Skill))>0,
Interval(sum(TotalDmcSec)/86400
/sum(AppelsPris), 'hh:mm:ss')
,
Interval(sum(TotalDmcSec)/86400
/sum(AppelsPris), 'hh:mm:ss')
)
no I have already tested and it is not the cause, I think it is necessary to find the right function
wow its a good piece of work