Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
What my macro should do is move to the next cell to the right when the current cell is occuiped. sample of my data A1 A2 C1 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub CellToRight()
'moves to the right if active cell is empty ActiveCell.Select If ActiveCell = "" Then MsgBox "Empty" ' your code Else MsgBox "Move to the next cell to the right" ActiveCell.Offset(0, 1).Select End If End Sub " wrote: Hi What my macro should do is move to the next cell to the right when the current cell is occuiped. sample of my data A1 A2 C1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
vb code for renaming a work sheet with a cell reference | Excel Discussion (Misc queries) | |||
Wildcards in Advanced filter criteria don't work with Excel 2003 | Excel Programming | |||
Advanced Sorting\VBA Code | Excel Programming | |||
Advanced Filter does not work in this one | Excel Programming |