我有代码可以检索 excel 文件中的单元格,如下所示:
tell application "Microsoft Excel"
-- put the complete set of data into a list of lists (i.e., 2 dimensions -> columns of rows)
set range1 to range "B2:H7686"
tell active sheet to set myData to value of range1
-- now access a specific cell's data
set myRow to 7
set myCol to 3
set myVal to item {myCol} of item {myRow} of myData as string
end tell
但是当我得到列表的结果列表时,大于 10000.0 的数字以指数形式表示。
运行此脚本后,如何获取此脚本以检索常规整数形式的数字或将列表中的数字更改为整数形式?
旁注:这些列表包含数字和字符串