Array of True values - Time averages

Sayth

Board Regular
Joined
Jun 4, 2010
Messages
212
If I create a basic table like this using a circular reference as a timestamp

Code:
Time	Call Qual
27/08/2015 12:07	2
27/08/2015 12:07	3
27/08/2015 12:30	3
27/08/2015 12:37	4
27/08/2015 12:39	3
27/08/2015 12:41	3
27/08/2015 12:45	4
27/08/2015 12:47	3
27/08/2015 12:50	4
27/08/2015 12:55	4
28/08/2015 9:21	3
28/08/2015 9:28	4
28/08/2015 9:43	3
28/08/2015 9:48	2
28/08/2015 10:07	3
28/08/2015 10:10	3
28/08/2015 10:18	3

How can I create an average of blocks of time of 15minutes. I am thinking I need to take my current formula which identifies the blocks but should there be an array in the True value to select all numbers?

This is my current formula
Code:
=IF(Sheet2!C2/1440 < (Sheet2!D:D/1440) > (Sheet2!C2/1440 + 15 ), "Yes", "No")
Note When sheet saved "yes" becomes #value I think because of circular reference in timestamp
Code:
Day	First Time	15	30	45
27/08/2015	27/08/2015 12:07	Yes		
28/08/2015
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
I suggest that the error #value occurs because you've got any array inside the IF function (i.e., the D:D). Try invoking the formula with CTR SHIFT ENTER instead of just ENTER in order to make Excel deal with that function-argument array operation.
 
Upvote 0
I suggest that the error #value occurs because you've got any array inside the IF function (i.e., the D:D). Try invoking the formula with CTR SHIFT ENTER instead of just ENTER in order to make Excel deal with that function-argument array operation.

Thanks
 
Upvote 0

Forum statistics

Threads
1,215,929
Messages
6,127,743
Members
449,402
Latest member
jvivo3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top