Select A1, Worksheet 1 in excel

I have a script that does a bunch of stuff to an Excel file. Just before it saves and closes, I want it to select A1, Worksheet 1, so the next time it is opened that A1, Worksheet 1 is selected.

How would that look in a script?

dzelnio

del:

Try this:

tell application "Microsoft Excel"
	activate object worksheet "Sheet1"
	select (range "a1")
end tell

Thanks!