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

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
How did you create the button?
 
Upvote 0
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,216,095
Messages
6,128,794
Members
449,468
Latest member
AGreen17

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