And not a cell that appears empty but line graphs display it as a zero value.
I've got the following formula which displays the average time spent in a queue per minute
So it displays the average value from column D if call comes in column A between time F10 to F11.
This works great if a call comes in once per minute or more, but if there is no call to sample then it returns an error so I added the IFERROR. If it returns an error I want it to display no value at all and then the line graph looks perfect but this formula, while appearing correct in the calculation the graph displays a 0 value.
I've already got the graph set to connect data points and it works perfectly if I delete the formula in the error cells but not with the complete formula.
Any ideas?
Thanks.
I've got the following formula which displays the average time spent in a queue per minute
Code:
=IFERROR(AVERAGEIFS(D:D,A:A,">="&F10,A:A,"<"&F11),"")
So it displays the average value from column D if call comes in column A between time F10 to F11.
This works great if a call comes in once per minute or more, but if there is no call to sample then it returns an error so I added the IFERROR. If it returns an error I want it to display no value at all and then the line graph looks perfect but this formula, while appearing correct in the calculation the graph displays a 0 value.
I've already got the graph set to connect data points and it works perfectly if I delete the formula in the error cells but not with the complete formula.
Any ideas?
Thanks.