以下AppleScript在Sheet1之前将新工作表添加到Microsoft Excel。是否有可能指定我要插入的工作表数量?在VBA中,Count
方法中有Sheets.Add
参数。
tell application "Microsoft Excel"
make new worksheet at before sheet "Sheet1" of active workbook
end tell
答案 0 :(得分:1)
这是一个简单的方法:
tell application "Microsoft Excel"
repeat 5 times
make new worksheet at before sheet "Sheet1" of active workbook
end repeat
end tell
您可以根据需要重复多次。