extract data from excel as a specific script
i have excel file has just 2 colomns but contains 3000 names and thier ID, it will be difficult to put all this data mnually in my script:
function PopulateFlightCrewCode() { for (var i=1; i<9; i++) { this.getField("code." + i).setItems([
["", ""],
["75428", "ABDALLAH BAHEY"],
]); } }
can i find way to extract automatically the data from the excel sheet as the underlined script ?
thanks in advance
