Re: get row number of first empty cell in Excel
Re: get row number of first empty cell in Excel
- Subject: Re: get row number of first empty cell in Excel
- From: Mason <email@hidden>
- Date: Sun, 13 Dec 2009 17:06:40 -0800 (PST)
Thank you Barry! That works perfectly and as usual it's a
much simpler solution than what I was trying to do originally.
- Mason
first row index of foundRange
if the range may have more than one row (not likely in your case) then you can add the height of the range as well:
(first row index of foundRange) -1 + (height of foundRange)
-- Barry
On 13 Dec 2009, at 22:43, Mason wrote: Hey AppleScripters,
I have an Excel document which I am working with and though I know how to find the first empty cell in a range I do not know how to get the exact number of the cell.
So my script contains:
tell application "Microsoft Excel" set foundRange to find range "A:A" what "" end tell
The result is:
range "'[spreadsheet1.csv]spreadsheet1.csv'!$A$962"
of application "Microsoft Excel"
I want to extract the '962' row number out of that result so I can set it to a variable and perform other functions in the script.
I inserted another line: "get properties of foundRange" and then played around with text item delimiters but couldn't get it.
Does anyone know how to extract the row number of the first empty cell and then set it to a variable?
Thanks in advance for any help!
- Mason Rove |
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden