This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var CSVer = function() { | |
var spreadsheet_ = null; | |
var dataSheet = null; | |
// Set spreadsheet variable and creates new sheet within CSVer() object | |
this.setUpSpreadsheet = function(){ | |
spreadsheet_ = SpreadsheetApp.openById(ss_id); | |
dataSheet = spreadsheet_.getSheetByName(dataTab_name); | |
return this; | |
} | |
// Import file data into spreadsheet |