• 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.

Assigning a Macro

well, I have been doing this for a while and I guess my brain is in lock mode.

How do I assign a Macro? I have a sheet that I need to link up and I need to assign the Macro to a sheet and I an not seem to remember how to do so

If I can get a step by step. I have either Excel 2010 or 2013

Thanks
 
Last edited:
When you say assign to sheet what exactly do you mean? do you mean run the macro on a specific sheet? if that's the case you need to add the Worksheets function before the Range function:
Code:
Worksheets("Sheet1").select
Range("A1").select
 
Back
Top