Sort - using Macro botton as Column identifier

JPH34

New Member
Joined
Feb 12, 2018
Messages
2
I am new to VBA, but trying to create a sort button at the bottom of multiple columns that will use the column location of the Macro button pressed as the column to be sorted. (Macro button at the bottom of column E would sort using the data in column E, button at the bottom of column AA would sort using the data in column AA, and so forth).

Here is a sample of the recorded macro code. How could I specify to use the macro button at the bottom of Column E in this example?

Rows("4:14").Select
Active Sheet.Sort.SortFields.Clear
ActiveSheet.Sort.SortFields.Add Key:=Range("E4:E14"), _
SortOn:=xlSortOnValues, Order:xlDescending, DataOption:=xlSortNormal
With ActiveSheet.Sort
.SetRange Range("A$:CV14")
.Header=xlNo
.MatchCase=False
.Orientation=xlTopToBottom
.SortMethod=xlPinYin
.Apply
End With
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I just used the Developer Tab and inserted a button at the bottom of Column E, and then assigned it to "Sort" Macro.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,286
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top