Converting this VBA script to Applescript

Hi!

I am unable to find the range of sheet in Excel in Applescript. Actually I want to convert this VBA code to Applescript

Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select

If anybody help me out !!!

Thanks,

Post what you are trying to do, it’s possible no one can read your intent form the VB code.

Actually I want to copy all data of a sheet for that I am unable to get the RANGE of all data in a sheet. If anyone can help how to do that in Applescript.

Thanks!

Hi,


tell application "Microsoft Excel"
	used range of active sheet
end tell