Ok I have a lot of data 17,000 rows of it.
I need to separate the data into blocks that are between certain time periods.
So
23:00-7:00 --> column 1
8:00-->22:00 column 2
I did this like
That puts the data in and then blanks, but I cannot run statistics b/c there are blanks in the data.
Then I tried
Now I can run statistics, but of course they are wrong b/c of the 0's
So I can get the average like so
But how in the world can I get Standard deviation and so forth? (I can get n, but I don't see how to get the sum of squares).
Is there some way to make the data collated without the gaps? I realize one could write a visual basic program or something, but I couldn't do that now b/c of lack of skills and lack of visual studio.
So in summary I just need to separate one set of data into two sets based on when it was recorded. If any one knows how please let me know thanks.
I need to separate the data into blocks that are between certain time periods.
So
23:00-7:00 --> column 1
8:00-->22:00 column 2
I did this like
Code:
=IF(B3>700, IF(B2<2300,D2,""),"")
=IF(B2>2200,D2,IF(B2<800,D2,""))
Then I tried
Code:
=IF(B2>700, IF(B2<2300,D2,0),0)
=IF(B2>2200,D2,IF(B2<800,D2,0))
So I can get the average like so
Code:
=SUMIF(F2:F17519,">0")/COUNTIF(F2:F17519,">0")
Is there some way to make the data collated without the gaps? I realize one could write a visual basic program or something, but I couldn't do that now b/c of lack of skills and lack of visual studio.
So in summary I just need to separate one set of data into two sets based on when it was recorded. If any one knows how please let me know thanks.