Recent content by Adade

  1. A

    Get new row function

    Please i wrote script that suppose insert data from the server to an excel sheet every hour, however it keeps over writing in the same row eg: 00:00 oclock row instead of moving to the next row every hour. please function below and assist. will be very grateful for help. i have a python script...
  2. A

    Automating google sheet

    Please see sample of the function am using here if can assist get_row_number () { local start=$(date --date="$START_DATE" +%s) extra=3 local end=$(date --date="$1" +%s) local difference=$((end-start)) QUOTIENT=$(($((difference / 86400))+extra)) return 0 } get_row () {...
  3. A

    Automating google sheet

    Thanks @JasKinasis
  4. A

    Automating google sheet

    All i need is a time function, an hourly function to get a new row every hour to insert into an excel sheet. the table is in this format TIME ERR1 COUNT ERR2 COUNT 00 02 03 04
Top