I have a With statement that applies to a certain sheet. However, within that With are several references to another sheet. Is there a way I can name the second sheet? I tried
Nov = Worksheets("November")
but it gave an error. What I want to do is be able to make a statement like this
Nov.Range("A1").Copy
Nov = Worksheets("November")
but it gave an error. What I want to do is be able to make a statement like this
Nov.Range("A1").Copy