Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default move one cell down

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default move one cell down

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,942
Default move one cell down

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default move one cell down

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default move one cell down


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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default move one cell down

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How move arrow keys from cell to cell and NOT entire col/rows Arrow keys: cell to cell not entire row New Users to Excel 1 November 13th 09 05:19 PM
How do I move from cell A 10 to cell B1 with one move or click chipsdad Excel Worksheet Functions 3 June 6th 09 03:43 AM
Excel - arrow keys move whole sheet instead of from cell to cell BR Prod Excel Discussion (Misc queries) 3 January 19th 06 01:31 AM
arrow keys move entire sheet instead of cell to cell gbeard Excel Worksheet Functions 2 April 13th 05 04:59 PM
Arrow keys move screen instead of moving from cell to cell. JaJay777 Setting up and Configuration of Excel 1 January 17th 05 06:48 PM


All times are GMT +1. The time now is 02:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"