在Excel中获取单元格的所有Applecript示例我都可以找到使用set c to range 'A1'
表示法,如下所示:
set c to range 1, 23
我想用列和行号代替 - 就像这样
--bootstrap sdl2
或类似的东西。有什么想法吗?
答案 0 :(得分:0)
是的,例如使用单元格A23:
set a to value of cell 23 of column 1
偏移量也有点奇怪,可能会派上用场 - 活跃的单元格示例:
set b to value of (get offset active cell column offset 4)
set c to value of (get offset active cell column offset 4 row offset 2)
所以你也可以这样做,这会给你E5的值:
set d to value of (get offset cell "A1" column offset 4 row offset 4)