Macro Formula

G

Gary Smith

Sorry if this is very basic, but could someone please tell
me how to move the cursor, at the end of a recorded macro
to the first empty cell in a column (in this case C)
Thanks, Gary
 
G

Gord Dibben

Gary

Select first blank cell in Column C starting from top............

Columns(3).End(xlDown).Offset(1, 0).Select

First blank cell at bottom of column C..............

Cells(Rows.Count, 3).End(xlUp).Offset(1, 0).Select

Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top