• MacTech Network:
  • Tech Support
  • |
  • MacForge.net
  • |
  • Apple News
  • |
  • Register Domains
  • |
  • SSL Certificates
  • |
  • iPod Deals
  • |
  • Mac Deals
  • |
  • Mac Book Shelf

MAC TECH

  • Home
  • Magazine
    • About MacTech in Print
    • Issue Table of Contents
    • Subscribe
    • Risk Free Sample
    • Back Issues
    • MacTech DVD
  • Archives
    • MacTech Print Archives
    • MacMod
    • MacTutor
    • FrameWorks
    • develop
  • Forums
  • News
    • MacTech News
    • MacTech Blog
    • MacTech Reviews and KoolTools
    • Whitepapers, Screencasts, Videos and Books
    • News Scanner
    • Rumors Scanner
    • Documentation Scanner
    • Submit News or PR
    • MacTech News List
  • Store
  • Apple Expo
    • by Category
    • by Company
    • by Product
  • Job Board
  • Editorial
    • Submit News or PR
    • Writer's Kit
    • Editorial Staff
    • Editorial Calendar
  • Advertising
    • Benefits of MacTech
    • Mechanicals and Submission
    • Dates and Deadlines
    • Submit Apple Expo Entry
  • User
    • Register for Ongoing Raffles
    • Register new user
    • Edit User Settings
    • Logout
  • Contact
    • Customer Service
    • Webmaster Feedback
    • Submit News or PR
    • Suggest an article
  • Connect Tools
    • MacTech Live Podcast
    • RSS Feeds
    • Twitter

Moving from Microsoft Office VBA to AppleScript:
MacTech's Guide to Making the Transition

Introduction  |  Table of Contents

Page Prev and Page Next buttons at bottom of the page.

Would you like a hard copy
or PDF of this Guide?

You can get a hard copy sent to you
AND download a PDF now ($19.95)
, or

... just download a PDF ($9.95).

Either way, you get a complimentary
MacTech Magazine Subscription

courtesy of the
Microsoft Mac Business Unit


 

  Magazine Reg. Price:  $50.00 value  
  Guide Reg. Price:  $40.00 value  
  You Save:  over $80.00!  

April, 2007
Page 58



     tell sheet "Sheet1" of workbook "Book2.xls"

          paste worksheet destination range "J3"

     end tell

end tell

If you‘re only trying to copy values, it‘s far more efficient and quicker to simply assign them, rather than calling the copy range command (Copy method in VBA):

With Sheets("Sheet1").Range("A1:J10")

   Sheets("Sheet2").Range("B10").Resize( _

          .Rows.Count, .Columns.Count).Value = .Value

End With

becomes:

tell application "Microsoft Excel"

     tell (range "A1:J10" of sheet "Sheet1")

          set value of (get resize (range "B10" of sheet ¬

              "Sheet2" of active workbook) row size (count rows) ¬

              column size (count columns)) to get its value

     end tell

end tell

In this case it is necessary to specify of active workbook for sheet "Sheet2" since it is in a tell block targeted at a range in sheet "Sheet1", a different sheet. AppleScript is perhaps more objected-oriented here than VBA in that if you don't specify of active workbook it looks for Sheet 2 inside its own range "A1:J10", of course doesn't find a sheet there, so doesn't do anything.

Similarly, you absolutely need the explicit get for its value to force it to be evaluated in the same command. (If you set a variable to it in a previous line then the get is not necessary: see Chapter 2. Actually Excel seems not nearly so insistent on the explicit get as Word, but in this case it is necessary.) The its may not be essential this time but it helps keep straight whose value (the original range's) we're talking to. And frequently it is necessary in tell blocks.

Paste special

The paste special command in the Table Suite (there is a different paste special on worksheet command in the Excel Suite which is not concerned with ranges) corresponds to the PasteSpecial method in VBA, and allows you to perform operations on the destination range based on the contents of the clipboard (e.g., add, subtract, multiply, divide).

For instance to multiply the value in each cell of a range by 2:

Application.ScreenUpdating = False

' Get the value in the clipboard using a

' cell in a temporary worksheet

With ActiveWorkbook.Worksheets.Add

   With .Cells(1, 1)

      .Value = 2

      .Copy

   End With

End With

Sheets("Sheet1").Range("A1:J10").PasteSpecial _

      Paste:=xlPasteAll, _

      Operation:=xlPasteSpecialOperationMultiply

' Delete the temporary worksheet

With Application

   .DisplayAlerts = False

   ActiveSheet.Delete

   .DisplayAlerts = True

   .ScreenUpdating = True

End With

Here it is in AppleScript:

tell application "Microsoft Excel"

     set screen updating to false -- speed it up



< Previous Page Next Page>
 
MacTech Only Search:
Community Search:

 
 
 

 
 
 
 
 
  • SPREAD THE WORD:
  • Slashdot
  • Digg
  • Del.icio.us
  • Reddit
  • Newsvine
  • Generate a short URL for this page:



MacTech Magazine. www.mactech.com
Toll Free 877-MACTECH, Outside US/Canada: 805-494-9797
MacTech is a registered trademark of Xplain Corporation. Xplain, "The journal of Apple technology", Apple Expo, Explain It, MacDev, MacDev-1, THINK Reference, NetProfessional, Apple Expo, MacTech Central, MacTech Domains, MacNews, MacForge, and the MacTutorMan are trademarks or service marks of Xplain Corporation. Sprocket is a registered trademark of eSprocket Corporation. Other trademarks and copyrights appearing in this printing or software remain the property of their respective holders.
All contents are Copyright 1984-2010 by Xplain Corporation. All rights reserved. Theme designed by Icreon.
 
Nov. 20: Take Control of Syncing Data in Sow Leopard' released
Nov. 19: Cocktail 4.5 (Leopard Edition) released
Nov. 19: macProVideo offers new Cubase tutorials
Nov. 18: S Stardom anounces Safe Capsule, a companion piece for Apple's
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live
Nov. 17: Ableton releases Max for Live