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

Selection of multiple ranges

Hi All,

i need to select and copy different ranges in excel but i am stuck please suggest.
j=2

i am using below:-
Range("T" & j & ":AA" & j, "AM" & j).Select

giving wrong selection

selecting T to AM

Thanks
Nipen
 
It appears that your statement needs some modification as below:

Range("T" & j & ":AA" & j & ", AM" & j).Select

Hope that helps.

Regards,
Ken
 
Hi ,

Instead of posting one line of code , and expecting an answer , you can do one of 2 things :

1. Post a complete , detailed description of what you want done

2. Post your complete code

Narayan
 
Back
Top