Vba - sort data using header value
-
I have the following code to sort an array of data. Sub Sort() Rows("8:275").Select Range("A275").Activate Selection.Sort Key1:=Range("BL9"), Order1:=xlDescending, Header:=xlYes, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBot_ DataOption1:=xlSortNormal Range("A8").Select End Sub The column to sort the data by is constantly changing, however the header is always the same. How can i amend the code so that instead of sorting by column BL9, it sorts using the header value - "GP"? Thanks in advance for your help Chris
-
Answer:
Chris It appears the header row is row 8. If not change Rows(8) below to indicate the header row. Sub Sort() dim res as Variant Rows("8:275").Select Range("A275").Activate res = Application.Match("GP",rows(8),0) if not iserror(res) then Selection.Sort Key1:=cells(9,res), Order1:=xlDescending, Header:=xlYes, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBot_ DataOption1:=xlSortNormal else msgbox "GP not found in row 8" End if Range("A8").Select End Sub
Miningco.com Visit the source
Related Q & A:
- How to plot geo-data using matplotlib/python?Best solution by Geographic Information Systems
- How To Sort a GridView Column When a Header Is Clicked?Best solution by Stack Overflow
- How can I sort my data in alphabetic order?Best solution by Stack Overflow
- How to refresh data using parse and swift?Best solution by Stack Overflow
- How to deal with dynamic JSON data using AngularJS?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.