Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to be able to have a column sorted alphabetically contiuously.
In other words, whenever data is entered, the whole column gets arranged alphabetically without having to "click' on the sort function. Thanks. ----- Posted with Newsbin Pro 5.0 ------ --- www.newsbin.com --- |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can start with this, adapt as needed:
Private Sub Worksheet_Change(ByVal Target As Range) Columns("B:B").Select Selection.Sort Key1:=Range("B1"), Order1:=xlAscending End Sub "john" <john@doe wrote in message ... I would like to be able to have a column sorted alphabetically contiuously. In other words, whenever data is entered, the whole column gets arranged alphabetically without having to "click' on the sort function. Thanks. ----- Posted with Newsbin Pro 5.0 ------ --- www.newsbin.com --- |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for your promtp reply,
unfortunately, eventhough I feel fairly comfortable with many excel functions, I am not a power user of excel and need a little bit more guidance... thanks. "John Bundy" wrote in message ... You can start with this, adapt as needed: Private Sub Worksheet_Change(ByVal Target As Range) Columns("B:B").Select Selection.Sort Key1:=Range("B1"), Order1:=xlAscending End Sub "john" <john@doe wrote in message ... I would like to be able to have a column sorted alphabetically contiuously. In other words, whenever data is entered, the whole column gets arranged alphabetically without having to "click' on the sort function. Thanks. ----- Posted with Newsbin Pro 5.0 ------ --- www.newsbin.com --- |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Gosral -- John is recommending you post his code into
The specific Sheet module that houses your data; If sheet1, then within the code module of sheet1 HTH "Gostal" wrote in message : Thanks for your promtp reply, unfortunately, eventhough I feel fairly comfortable with many excel functions, I am not a power user of excel and need a little bit more guidance... thanks. "John Bundy" wrote in message ... You can start with this, adapt as needed: Private Sub Worksheet_Change(ByVal Target As Range) Columns("B:B").Select Selection.Sort Key1:=Range("B1"), Order1:=xlAscending End Sub "john" <john@doe wrote in message ... I would like to be able to have a column sorted alphabetically contiuously. In other words, whenever data is entered, the whole column gets arranged alphabetically without having to "click' on the sort function. Thanks. ----- Posted with Newsbin Pro 5.0 ------ --- www.newsbin.com --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
How do I remove the annoying automatic date formatting in Excel? | Excel Discussion (Misc queries) | |||
Excel Date Format - users should be able to override it automatic. | Excel Discussion (Misc queries) | |||
Multiple Excel versions. | Excel Discussion (Misc queries) | |||
Excel: Allow to turn on / off automatic header selection in sorts | Excel Discussion (Misc queries) |