Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default need help with macro -move cursor down then home

Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Correction need help with macro -move cursor down then home

correction that should read
ActiveCell.Offset(1, -3).Select


"Ftca" wrote in message
...
Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 70
Default need help with macro -move cursor down then home

Try

activecell.End(xlToLeft).Offset(1,1).Select

GB



"Ftca" wrote in message
...
Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default need help with macro -move cursor down then home

thanks GB
fo replying
I will try this now

Peter
"GB" wrote in message
...
Try

activecell.End(xlToLeft).Offset(1,1).Select

GB



"Ftca" wrote in message
...
Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default need help with macro -move cursor down then home

Good as Gold
Thanks that worked!!



"GB" wrote in message
...
Try

activecell.End(xlToLeft).Offset(1,1).Select

GB



"Ftca" wrote in message
...
Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default need help with macro -move cursor down then home

More reliable might be:

Cells(ActiveCell.Row+1,2).Select

Doesn't depend on values being in other cells.

--
Regards,
Tom Ogilvy

"Ftca" wrote in message
...
Good as Gold
Thanks that worked!!



"GB" wrote in message
...
Try

activecell.End(xlToLeft).Offset(1,1).Select

GB



"Ftca" wrote in message
...
Hi all
can someone help me with code to
move the cursor down a row and to column 2?

I've been using
ActiveCell.Offset(0, -3).Select

but it has flaws , I need it to go to the 2nd col from left


TIA








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 do I get the cursor to move to cell A1 when I press home key RANLAY Excel Discussion (Misc queries) 1 December 15th 09 01:21 AM
move cursor in excle using macro fdibbins Excel Discussion (Misc queries) 6 December 8th 08 06:58 PM
macro to move cursor one cell right Kodak1993 New Users to Excel 3 September 23rd 08 02:00 AM
Make a macro of keystrokes. ie. F2,Shift & Home & right cursor,de. Ted Byrd Excel Worksheet Functions 1 December 29th 04 05:52 PM
Easy question: macro to move cursor one to the right Sean Sydor Excel Programming 2 August 24th 03 04:26 AM


All times are GMT +1. The time now is 10:03 PM.

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"