Cut and paste - command in VBA

  • Thread starter Thread starter Jan
  • Start date Start date
J

Jan

Hi
I'm looking for a command in VBA that will cut the active cel and
paste it in the same row but 2 colums to the right.
Can anyone help ?
thanks.
 
Hi
one way without copy and paste:
activecell.offset(0,2).value = activecell.value
 
Since the keyword here is CUT, try
activecell.cut activecell.offset(,2)
 

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