I have data about 400 rows in columns B through U. Column F is the one in where dates are posted. I need to have it where all the data is organized by column F, without messing up the rest of the cells adjoining it.
Is this possible? If so how?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have some header rows that shouldn’t sorted you’ll need specify the complete Range to be sorted (e.g.
Range("B2:U10").Sort…) instead. Replace order1 with xlDescending if you want it descending instead.