Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have several task in database.
All of them have a begging and end date.
Ex.
task_begin: 12/03/2012 14:30
task_end: 21/03/2012 18:30
task_duration: NetWorkDays(task_begin, task_end)
I want to calculate the average task duration in days.
But due to data quality, I have to remove the values where (duration < 0)
How can I calculate the average without the (duration < 0)?
EX: if(duration > 0;day(avg(Duracao_dias_uteis)))
Regards,
Gonçalo
Goncalo
Try this:
Avg(if(duration > 0, Duracao_dias_uteis))
Regards
Jonathan
Goncalo
Try this:
Avg(if(duration > 0, Duracao_dias_uteis))
Regards
Jonathan