如何在Excel for Mac中使用AppleScript增加/减少小数位(v2015)

时间:2015-10-01 17:59:32

标签: applescript-excel

我正在寻找与调整所选范围显示的小数位数的功能区按钮相同的功能,因此增加一个'或者'减少一个。'

https://www.evernote.com/l/AApXNJsEcZlM26TNTsHN1FSwP3eUTuJJwqU

1 个答案:

答案 0 :(得分:0)

rkp333

请尝试以下操作,因为这适用于Excel的早期版本(2011):

tell application "Microsoft Excel"
   tell sheet 1
       tell cell 1 of used range
           set number format to "0.00" -- can be 0,00 in some localizations
       end tell
   end tell
end tell