Two Plus Two Newer Archives

Two Plus Two Newer Archives (http://archives1.twoplustwo.com/index.php)
-   Software (http://archives1.twoplustwo.com/forumdisplay.php?f=47)
-   -   Excel VBA Help (http://archives1.twoplustwo.com/showthread.php?t=479694)

Zobags 08-17-2007 05:08 AM

Excel VBA Help
 
I am building a big spreadsheet in excel, and I was wondering if I could create a macro that moves the active cell one cell down and one cell to the right. Does anyone know if this is possible or how to do it? Any help would be greatly appreciated. Also, recommendations to any other forums where I might find the answer would be appreciated.

uDevil 08-17-2007 07:43 AM

Re: Excel VBA Help
 
Sub RightDown()
'
' RightDown Macro
' Move selected cell one down and one right.
'
' Keyboard Shortcut: Ctrl+d
'
ActiveCell.Offset(1, 1).Activate
End Sub

Zobags 08-17-2007 05:32 PM

Re: Excel VBA Help
 
Awesome! Thank you very much.

TheIrishThug 08-17-2007 06:38 PM

Re: Excel VBA Help
 
For other help in programing with excel, you can try http://www.excelforum.com/index.php.


All times are GMT -4. The time now is 12:54 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.