Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, I need to make a macro who can move one cell down from the active cell
and make this cell active. ex: active cell = C1 = new active cell C2. I hope some of your hard guys can help me with this problem. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveCell(2).Select
but there is rarely ever any need to select a cell. HTH, Bernie MS Excel MVP "H. Nissen" wrote in message ... Hi, I need to make a macro who can move one cell down from the active cell and make this cell active. ex: active cell = C1 = new active cell C2. I hope some of your hard guys can help me with this problem. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi
from you example, i'm having a problem understanding what your are trying to do. but.. Activecell.offset(1,0).select not sure if this helped. post back with more info on what your are doing. regards FSt1 "H. Nissen" wrote: Hi, I need to make a macro who can move one cell down from the active cell and make this cell active. ex: active cell = C1 = new active cell C2. I hope some of your hard guys can help me with this problem. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, This form works, thx: '
ActiveCell.Offset(1, 0).Select Selection.Copy I have to use it, to copy values from a excell sheet into an other application. With this macro, I do not have to mark and copy every 1240 cpr's manually :) But thx for the help to make this macro. "Bernie Deitrick" skrev: ActiveCell(2).Select but there is rarely ever any need to select a cell. HTH, Bernie MS Excel MVP "H. Nissen" wrote in message ... Hi, I need to make a macro who can move one cell down from the active cell and make this cell active. ex: active cell = C1 = new active cell C2. I hope some of your hard guys can help me with this problem. . |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, This form works, thx: ' ActiveCell.Offset(1, 0).Select Selection.Copy I have to use it to copy values from a excell sheet into another application. With this macro, I do not have to mark and copy every 1.240 cpr's manually :) But thx for the help to make the macro. Mvh Hans "Bernie Deitrick" skrev: ActiveCell(2).Select but there is rarely ever any need to select a cell. HTH, Bernie MS Excel MVP "H. Nissen" wrote in message ... Hi, I need to make a macro who can move one cell down from the active cell and make this cell active. ex: active cell = C1 = new active cell C2. I hope some of your hard guys can help me with this problem. . |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As Bernie mentioned you dont need to select to copy. You can copy without
selecting the cell ActiveCell.Offset(1, 0).Copy -- Jacob "H. Nissen" wrote: Hi, This form works, thx: ' ActiveCell.Offset(1, 0).Select Selection.Copy I have to use it to copy values from a excell sheet into another application. With this macro, I do not have to mark and copy every 1.240 cpr's manually :) But thx for the help to make the macro. Mvh Hans "Bernie Deitrick" skrev: ActiveCell(2).Select but there is rarely ever any need to select a cell. HTH, Bernie MS Excel MVP "H. Nissen" wrote in message ... Hi, I need to make a macro who can move one cell down from the active cell and make this cell active. ex: active cell = C1 = new active cell C2. I hope some of your hard guys can help me with this problem. . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How move arrow keys from cell to cell and NOT entire col/rows | New Users to Excel | |||
How do I move from cell A 10 to cell B1 with one move or click | Excel Worksheet Functions | |||
Excel - arrow keys move whole sheet instead of from cell to cell | Excel Discussion (Misc queries) | |||
arrow keys move entire sheet instead of cell to cell | Excel Worksheet Functions | |||
Arrow keys move screen instead of moving from cell to cell. | Setting up and Configuration of Excel |