Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have an expression to give me the AVG of TIMETAKEN in the last 7 days but it isn't returning any results.
=AVG({<STARTDATE={"<$(=date(today()-7))"} >}TIMETAKEN)
I can get yesterdays AVG with this and it works:
=AVG({<STARTDATE={"$(=Date(Today()-1))"}>} TIMETAKEN)
Hi,
Please try with this,
=AVG(
{<STARTDATE={"$(=Date(Today()-7))","$(=Date(Today()-6))","$(=Date(Today()-5))"
,"$(=Date(Today()-4))","$(=Date(Today()-3))","$(=Date(Today()-2))","$(=Date(Today()-1))"}>
}TIMETAKEN)
=AVG({$=$(=Date(Today(),-7))<$(=date(Today(),0))"}>} TIMETAKEN)
That gives an error
Hi,
Please try with this,
=AVG(
{<STARTDATE={"$(=Date(Today()-7))","$(=Date(Today()-6))","$(=Date(Today()-5))"
,"$(=Date(Today()-4))","$(=Date(Today()-3))","$(=Date(Today()-2))","$(=Date(Today()-1))"}>
}TIMETAKEN)
=AVG({$=$(=Date(Today(),-7))<$(=Date(Today(),0))"}>} TImeTakes)
=AVG(
{<STARTDATE={">=$(=Date(Today()-7))<=$(=Date(Today()-1))"}>
}TIMETAKEN)
This should also provide the same result effectively.