Copy from cell above

  • Thread starter Thread starter Patrick C. Simonds
  • Start date Start date
P

Patrick C. Simonds

I know that "Selection.End(xlToLeft).Select" will select the first cell
in the current row. What would it take to then copy the contents of the cell
above into the active cell and then select the cell (in the current row) in
column X
 
if i'm understanding what you want, maybe this:

activecell.value = activecell.Offset(-1).value
 
Thank you, almost there.

Now I need it to then select the cell (in the current row) in column X
 
if you really mean column "X", then:

cells(activecell.row,"X").select
 

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

Back
Top