Hello:
Please refer to attached file.
I need VB Code to do the following.
I will be entering names in column B from cell B2 down.
Once i enter, i need the list to be alphabetticaly sorted.
Let me know if you have any questions.
Thanks.
Riz
Hello:
Please refer to attached file.
I need VB Code to do the following.
I will be entering names in column B from cell B2 down.
Once i enter, i need the list to be alphabetticaly sorted.
Let me know if you have any questions.
Thanks.
Riz
Have you tried recording a macro?
Entia non sunt multiplicanda sine necessitate
Hello shg:
No, because the list will be Dynanic and number of rows would not be fixed.
Please let me know if you have any questions.
Thanks.
Riz
That would require only a minor adaptation of a recorded macro.
Last edited by shg; 03-18-2016 at 08:30 PM.
Hi shg:
Thanks a lot, i beleive i got it thru recording macro as code below.
Thanks a lot![]()
Sub Macro1() ' ' Macro1 Macro ' ' Range("B1").Select Selection.AutoFilter ActiveWorkbook.Worksheets("Sheet1").AutoFilter.Sort.SortFields.Clear ActiveWorkbook.Worksheets("Sheet1").AutoFilter.Sort.SortFields.Add Key:=Range _ ("B1:B9"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _ xlSortNormal With ActiveWorkbook.Worksheets("Sheet1").AutoFilter.Sort .Header = xlYes .MatchCase = False .Orientation = xlTopToBottom .SortMethod = xlPinYin .Apply End With End Sub
Riz
Good job, riz. Holler if you need help tweaking.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks