I am having an issue with a script that references a library. My issue is not connecting to the library, its that my script calls a function, but when it runs, it errors out on a function that I am not referencing.
In sheet A, I have this code:
function DataPull() {
MasterScriptLibrary.DataPullBillable()
}
In MasterScriptLibrary
(project's full name is 2020 Master Script Library), I have 2 distinct functions (they don't reference each other at all) called convertPersonnel
and DataPullBillable
.
When the above function runs from sheet A, I get an error message:
Syntax error. (line 66, file "convertPersonnel", project "2020 Master Script Library")
Line 66 of the library:
var data = activeRange.filter(element => element.join("") != "");
Any idea what could be happening here?