Can't have aggregate function in expression is what I am getting when I try this:
=Avg & Format(Avg (([FFF]-(Avg([FFF]/3600)*3600))/60),"00") & ":" & Format(([FFF] Mod 60),"00")
However if I change it up to:
=Avg ([FFF]/3600)"00") & ":" & Format(Avg (([FFF]-(Avg([FFF]/3600)*3600))/60),"00") & ":" & Format(([FFF] Mod 60),"00")
It removes the issue but does not run it properly.
The result I am looking for is to take a time stamp of minutes (n.xxxx) to format into h:nn:ss but am having no luck.
Thanks in advanced...