![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | retrieve Active cell "Name" vbscript I'm not sure if this is the right group or not, I have a vbscript that opens and excel spreadsheet and does some work on it. I need to be able to add a formula to a cell like "=A1+A2" , but I need to know which cell I am in in order to add the formula I know objXL.activeSheet.Range("A1").activate will point me to cell "A1". then I move down through the sheet. using objXL.activecell.offset(1,0).activate which moves me down a row, what I really need is a way to find out "where I am" after the script moves. is there a function that will return "B1" when I'm on the second row? |
My System Specs![]() |
| | #2 (permalink) |
| | Re: retrieve Active cell "Name" vbscript "Lee" <ldspmAT@xxxxxx> wrote in message news:CC862426-BB4B-42C0-8866-EECDCEEF7DCA@xxxxxx Quote: > I'm not sure if this is the right group or not, > > I have a vbscript that opens and excel spreadsheet and does some work on > it. > > I need to be able to add a formula to a cell like "=A1+A2" , but I need to > know which cell I am in in order to add the formula > > I know objXL.activeSheet.Range("A1").activate will point me to cell > "A1". > then I move down through the sheet. using > objXL.activecell.offset(1,0).activate which moves me down a row, > > what I really need is a way to find out "where I am" after the script > moves. > > is there a function that will return "B1" when I'm on the second row? > current cell address. |
My System Specs![]() |
| | #3 (permalink) |
| | Re: retrieve Active cell "Name" vbscript ActiveCell refers to the current active cell, wherever it might be. ActiveCell.Address returns a string containing the address of the ActiveCell. Cordially, Chip Pearson Microsoft Most Valuable Professional Excel Product Group, 1998 - 2009 Pearson Software Consulting, LLC www.cpearson.com (email on web site) On Thu, 19 Feb 2009 10:24:17 -0500, "Lee" <ldspmAT@xxxxxx> wrote: Quote: >I'm not sure if this is the right group or not, > >I have a vbscript that opens and excel spreadsheet and does some work on it. > >I need to be able to add a formula to a cell like "=A1+A2" , but I need to >know which cell I am in in order to add the formula > >I know objXL.activeSheet.Range("A1").activate will point me to cell "A1". >then I move down through the sheet. using >objXL.activecell.offset(1,0).activate which moves me down a row, > >what I really need is a way to find out "where I am" after the script moves. > >is there a function that will return "B1" when I'm on the second row? > |
My System Specs![]() |
| | #4 (permalink) |
| | Re: retrieve Active cell "Name" vbscript perfect. thanks.. I "Pegasus (MVP)" <I.can@xxxxxx> wrote in message news:OtzergqkJHA.5124@xxxxxx Quote: > > "Lee" <ldspmAT@xxxxxx> wrote in message > news:CC862426-BB4B-42C0-8866-EECDCEEF7DCA@xxxxxx Quote: >> I'm not sure if this is the right group or not, >> >> I have a vbscript that opens and excel spreadsheet and does some work on >> it. >> >> I need to be able to add a formula to a cell like "=A1+A2" , but I need >> to know which cell I am in in order to add the formula >> >> I know objXL.activeSheet.Range("A1").activate will point me to cell >> "A1". >> then I move down through the sheet. using >> objXL.activecell.offset(1,0).activate which moves me down a row, >> >> what I really need is a way to find out "where I am" after the script >> moves. >> >> is there a function that will return "B1" when I'm on the second row? >> > If I recall correctly then objExcel.ActiveCell.Address will return the > current cell address. > |
My System Specs![]() |
![]() |
| Thread Tools | |
| |