I currently have numbers (Dollar Values) in Two Columns Z15:Z70 and AA15:AA70. Now I only want those to Column to sort Ascending but Nothing else in the Worksheet is to Move just those two Columns.. Is it Possible.. I started to build some code but no luck this is moving everything..
Sub Worksheet_Activate()
'
' Row Sort Macro
' Macro recorded 4/25/2011 by Rude Boy Chris
'
rowcount = ActiveSheet.UsedRange.Rows.Count
Range(Cells(15, 1), Cells(rowcount, 26)).Select
Selection.Sort Key1:=Range("Z15"), Order1:=xlAscending, _
Header:=xlNo, OrderCustom:=1, MatchCase:=False, _
Orientation:=xlTopToBottom
Range("A1").Activate
End Sub
Sub Worksheet_Activate()
'
' Row Sort Macro
' Macro recorded 4/25/2011 by Rude Boy Chris
'
rowcount = ActiveSheet.UsedRange.Rows.Count
Range(Cells(15, 1), Cells(rowcount, 26)).Select
Selection.Sort Key1:=Range("Z15"), Order1:=xlAscending, _
Header:=xlNo, OrderCustom:=1, MatchCase:=False, _
Orientation:=xlTopToBottom
Range("A1").Activate
End Sub