Avatar of colonialiu20
colonialiu20
Flag for United States of America asked on

use google spreadsheet to analyze # of stops each day

I have a google spreadsheet that contains a list of id#s and date/times.  For each id#, for each date, Id like to count the # of entries.  For example, id 3496978724, starting in row 2, has 4 entries for 10/1/2013.  After we count the # of entries an ID has for the day, the following rules should be applied.  If the # of entries is:

1
This should be considered "One Way."  All records for that id for the day should be classified as "One Way"

2
If the difference between the two times is less than 2.5 hours, all records for that id for the day should be classified as "One Way"

If the difference between the two times is greater than 2.5 hours, all records for that id for the day should be classified as "Round Trip"

3
If the difference between any two times is more than 2.5 hours apart, all records for that id for the day should be classified as "Round Trip"

Otherwise, all records for that id for the day should be classified as "One Way"

4
If the difference between any two times is more than 2.5 hours apart, all records for that id for the day should be classified as "Round Trip"

Otherwise, all records for that id for the day should be classified as "One Way"

5 or greater
If the difference between any two times is more than 2.5 hours apart, all records for that id for the day should be classified as "Round Trip"

Otherwise, all records for that id for the day should be classified as "One Way"

In the end
Id like a list of each id/date combination, along with whether that corresponding date was roundtrip or one way.


https://docs.google.com/spreadsheet/ccc?key=0Am5eEooQEL63dGc3NksyM3JhRTl0QVQwclAtSXdoUmc&usp=sharing
SpreadsheetsMicrosoft ExcelGoogle Workspace

Avatar of undefined
Last Comment
Peter Kwan

8/22/2022 - Mon
Peter Kwan

I guess 2, 3, 4 and >=5 are all the same logic, so they can be combined as following:

1: Always output "One Way"
>=2: If the difference of any two times are larger than 2.5 hours, then output "Round Trip", otherwise "One Way"

I assumed you already grouped the student ID together and sort the data in the order of date within the same student ID. In this case, you may try to create a script (Tools -> Script Editor) and add a function like this:

function setOneWayOrRoundTrip() {
  var sheet = SpreadsheetApp.getActiveSpreadsheet();
  var rows = sheet.getDataRange();
  var numRows = rows.getNumRows();
  var values = rows.getValues();
  var count = 0;
  
  for (var i = 1; i <= numRows - 1; i++) {
    var row = values[i];
    var studentID = row[0];
    var time = row[1];
    var date = row[2];
    var prevRow = values[i-1];
    var prevStudentID = prevRow[0];
    var prevDate = prevRow[2];
    
    if (studentID != prevStudentID || date != prevDate) {
      if (i > 1) {
        if (count == 1) {
          sheet.getRange("D" + i).setValue("One Way");
        }
        else {
          var isOneWay = true;
          for (var j = i; j > i-count; j--) {
            var time1 = sheet.getRange("B" + j).getValue();
            var time2 = sheet.getRange("B" + (j-1)).getValue();
            if (time1 - time2 > 60*1000*60*2.5) {
              isOneWay = false;
              break;
            }
          }
          for (var j = i; j>i-count; j--)          
            sheet.getRange("D" + j).setValue(isOneWay?"One Way":"Round Trip");
        }
      }
      count = 1;
    }
    else 
      count++;
  }
  if (count == 1) {
    sheet.getRange("D" + numRows).setValue("One Way");
  }
  else {
     var isOneWay = true;
     for (var j = numRows; j > numRows-count; j--) {
       var time1 = sheet.getRange("B" + j).getValue();
       var time2 = sheet.getRange("B" + (j-1)).getValue();
       if (time1 - time2 > 2.5/24.0) {
         isOneWay = false;
         break;
       }
     }
     for (var j = numRows; j>numRows-count; j--)          
        sheet.getRange("D" + j).setValue(isOneWay?"One Way":"Round Trip");
  }
};

Open in new window


Since I found my timezone is different from the data, so I added a column C to get the date as shown in column B by a formula "=TEXT(B?, "YYYY/MM/DD")" for each row.

A sample is referenced below:
https://docs.google.com/spreadsheet/ccc?key=0AoYcUhd_FqORdEZDLWcwZmVWeUFRVEdQODBsUE52RlE&usp=sharing

Please try. Thanks.
colonialiu20

ASKER
Thank you!!!  Is there a way to now pull a record of every unique id #, date, combination, and pull wether it was a round trip or one way.  Similar to what is in f2:h7.

Thank you again
Peter Kwan

A simple way, I dragged column B to column D such that column B is now the date only and C is the result.

Then at cell F2, I add the following formula "=UNIQUE(A2:C)". After entering, it will show the unique results in F:H automatically.

The reference spreadsheet is modified for your reference.
Your help has saved me hundreds of hours of internet surfing.
fblack61
colonialiu20

ASKER
Thank you.  There appears to be a problem with the script that i cant figure out.  Take a look at my spreadsheet, https://docs.google.com/spreadsheet/ccc?key=0Am5eEooQEL63dGdTT0pmclZ0QjVkeVZhWFFvZER6cXc&usp=sharing

If the last two records are:

456      11/19/2013            11/19/2013 8:18:00
456      11/19/2013            11/19/2013 8:20:00

The script will calculate it as a round trip.  This only happens on the last records.

If i put this as the last record:
999      11/20/2013            11/20/2013 8:00:00

it will calculate the student 456 record above correctly as one way as well as calculate 999 as a one way trip.  There just seems to be a problem when the last records are for round trip.  Any thoughts?
colonialiu20

ASKER
In addition to the above problem, the script keeps on timing out after a few hundred rows.  is there any way to extend the timeout time.  If not, is there a way to modify that script for excel?
ASKER CERTIFIED SOLUTION
Peter Kwan

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.