G
gimme_this_gimme_that
For example ...
I'd like to translate this VBA macro:
Sub nn()
Workbooks.Open Filename:=Application.TemplatesPath + "Home
Essentials:Finance Tools:Car Lease vs Purchase"
End Sub
To Applescript:
tell application "Microsoft Excel"
set wkbk to open workbook file name TemplatesPath & "Home
Essentials:Finance Tools:Car Lease vs Purchase"
end tell
I can use the actual value of Application.TemplatePath to open the
file ... I'm mostly interested in knowing how to access Application
objects that I know are available via VBA that might not be
documented.
Thanks.
I'd like to translate this VBA macro:
Sub nn()
Workbooks.Open Filename:=Application.TemplatesPath + "Home
Essentials:Finance Tools:Car Lease vs Purchase"
End Sub
To Applescript:
tell application "Microsoft Excel"
set wkbk to open workbook file name TemplatesPath & "Home
Essentials:Finance Tools:Car Lease vs Purchase"
end tell
I can use the actual value of Application.TemplatePath to open the
file ... I'm mostly interested in knowing how to access Application
objects that I know are available via VBA that might not be
documented.
Thanks.