In excel how do I get my rows under column A to automatically alphabetize
B Bob Umlas Jan 9, 2006 #2 Right/click the sheet tab, select View Code, enter this: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 1 Then Columns(1).Sort key1:=Range("A1"), order1:=xlAscending, header:=xlGuess End If End Sub
Right/click the sheet tab, select View Code, enter this: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 1 Then Columns(1).Sort key1:=Range("A1"), order1:=xlAscending, header:=xlGuess End If End Sub
N neopolitan Jan 9, 2006 #3 Select all cells containing data (for example: A2-G25). Click on Data>Sort and then specify to "Sort On" Col A and "Ascending".
Select all cells containing data (for example: A2-G25). Click on Data>Sort and then specify to "Sort On" Col A and "Ascending".
R Ron Coderre Jan 9, 2006 #4 I think you need to give us some more details about your data and what you want sorted. *********** Regards, Ron XL2002, WinXP-Pro
I think you need to give us some more details about your data and what you want sorted. *********** Regards, Ron XL2002, WinXP-Pro
D Dave Peterson Jan 9, 2006 #5 Maybe: http://contextures.com/xlSort02.html from Debra Dalgleish's site. It's automatic after you click a rectangle.
Maybe: http://contextures.com/xlSort02.html from Debra Dalgleish's site. It's automatic after you click a rectangle.