• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Excel Copy text code help needed

steven10101989

New Member
Hi

I currently have a worksheet called "Plan" where the user will enter text into "C34", once complete they will click on a form control button to email the spreadsheet.

I need help with code that would "copy" the text from "C34" to a worksheet named "Goal 1", position "C8" when the user clicks the form control button.

Any help would be greatly appreciated.
 
Steven

Firstly, Welcome to the Chandoo.org Forums

Code:
Sheets("Plan").Range("C34").Copy Sheets("Goal 1").Range("C8")
 
Back
Top