Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    Record a macro, and then view the source code Excel generates. It should give you everything you need. Commented Feb 22, 2016 at 17:01
  • Also, it's not quite your question, but you can skip copy/paste (thus avoiding the Clipboard) by simply setting two ranges' values equal. (This works well when you want only the values). i.e. your code in your post could also be written as [range you want to fill] = [range whose values you want to copy], or Sheets("Sheet2").Range("B14").Value = Sheets("Sheet1").Range("B2").Value Commented Feb 22, 2016 at 18:02