Numbersでオープン中の最前面の書類のすべてのシートの表1の行数の合計を計算するAppleScriptです。
Blogアーカイブ本作成のために書いたものです。
この記事数をカウントするために使いました。
AppleScript名:Numbersでオープン中の最前面の書類のすべてのシートの表1の行数合計を計算する |
set aCount to 0
tell application "Numbers" tell front document set sList to every sheet repeat with i in sList tell i try set tmpC to count every row of table 1 set aCount to aCount + tmpC end try end tell end repeat end tell end tell return aCount |
More from my site
(Visited 166 times, 1 visits today)