This file contains hidden or 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
| // SMH Adjusted for Google Sheets (+2 instead of +1) | |
| // Convert Excel dates into JS date objects | |
| // | |
| // @param excelDate {Number} | |
| // @return {Date} | |
| function getJsDateFromExcel(excelDate) { | |
| // JavaScript dates can be constructed by passing milliseconds |