ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   telling Excel to go down relatively (https://www.excelbanter.com/excel-programming/295999-telling-excel-go-down-relatively.html)

CC[_4_]

telling Excel to go down relatively
 
Using VBA, how do you tell Excel to go down to the next cell relatively, rather than absolutely?

Frank Kabel

telling Excel to go down relatively
 
Hi
not quite sure what you're trying to do. Maybe
activecell.offset(1,0).select

--
Regards
Frank Kabel
Frankfurt, Germany


CC wrote:
Using VBA, how do you tell Excel to go down to the next cell
relatively, rather than absolutely?


Bob Phillips[_6_]

telling Excel to go down relatively
 
Activecell.Offset(1,0).Select

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"CC" wrote in message
...
Using VBA, how do you tell Excel to go down to the next cell relatively,

rather than absolutely?



Jake Marx[_3_]

telling Excel to go down relatively
 
Hi CC,

CC wrote:
Using VBA, how do you tell Excel to go down to the next cell
relatively, rather than absolutely?


ActiveCell.Offset(1, 0).Select

or

ActiveCell(2, 1).Select

However, it's rare that you need to select anything when working with Excel
through VBA. If you just need the value of the cell below the activecell,
you could do this:

MsgBox ActiveCell.Offset(1, 0).Value

or

MsgBox ActiveCell(2, 1).Value

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]



All times are GMT +1. The time now is 12:06 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com