Get Data From Xlsx File. #SenseTalk
set ExcelFile to Workbook(ResourcePath("Data.xlsx"))
set ExcelSheet to ExcelFile.Wrksheet("Sheet1")
put ((Cell(ExcelSheet, "A1"),),) into MyCellA1
log MyCellA1
put ((ExcelSheet.Cell(1,2),),) into MyCellA2
log MyCellA2