Simple Macro Conversion #2


Posted by Ralph on October 25, 2001 6:08 AM

The last suggesetion worked great! Now I would like to convert the folowing lotus Macro to Excel:

C~{Down}

I'm sure this must be very simple. Unfortunately I am "Visual Basic" impared. I even tried using the Macro wizard but I can't get it to work.
Thanks to anyone who acn help.



Posted by mseyf on October 25, 2001 7:43 AM


Ralph:

Try

ActiveCell = "C"
ActiveCell.Offset(1, 0).Select


HTH

Mark