Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hi, How can i use VBA to move down a cell in excel? thanks -- SusieQ ------------------------------------------------------------------------ SusieQ's Profile: http://www.excelforum.com/member.php...o&userid=30818 View this thread: http://www.excelforum.com/showthread...hreadid=506285 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ActiveCell.Offset(1, 0).Select
-- Ian -- "SusieQ" wrote in message ... Hi, How can i use VBA to move down a cell in excel? thanks -- SusieQ ------------------------------------------------------------------------ SusieQ's Profile: http://www.excelforum.com/member.php...o&userid=30818 View this thread: http://www.excelforum.com/showthread...hreadid=506285 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It is rarely necessary to select in VBA, and better not to. You could always
do something like For i = 1 To 100 If Cells(i,"A").Value = 10 Then Cells(i,"A").Offset(0,1).Value = Now End If Next i which does no selecting and is more efficient. -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Ian" wrote in message ... ActiveCell.Offset(1, 0).Select -- Ian -- "SusieQ" wrote in message ... Hi, How can i use VBA to move down a cell in excel? thanks -- SusieQ ------------------------------------------------------------------------ SusieQ's Profile: http://www.excelforum.com/member.php...o&userid=30818 View this thread: http://www.excelforum.com/showthread...hreadid=506285 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Instead of a negative number, I'd like to show zero... | Excel Worksheet Functions | |||
move cell contents | Excel Discussion (Misc queries) | |||
copying cell names | Excel Discussion (Misc queries) | |||
Arrows move worksheet rather than cell selection, how fix? | Excel Worksheet Functions | |||
up to 7 functions? | Excel Worksheet Functions |