ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   list that alphabetizes itself w/each new name (https://www.excelbanter.com/excel-discussion-misc-queries/109360-list-alphabetizes-itself-w-each-new-name.html)

rijisaac

list that alphabetizes itself w/each new name
 
How do I make a customer list that alphabetizes itself with each new entry?
I need to have individual sheets for each customer ( the main issue is that
visit dates must be documented, whether on indivual sheets of on the same as
for all customers.
thank you

Carlo

list that alphabetizes itself w/each new name
 
try following:
put this macro in the worksheet with the list:
'--------------------------------
Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Column = 2 Then '2 means column B
Range("B2:B15000").Select

Selection.Sort Key1:=Range("B2"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
End If
End Sub
'-------------------------------------------

hope that helps

Cheers Carlo

"rijisaac" wrote:

How do I make a customer list that alphabetizes itself with each new entry?
I need to have individual sheets for each customer ( the main issue is that
visit dates must be documented, whether on indivual sheets of on the same as
for all customers.
thank you


CLR

list that alphabetizes itself w/each new name
 
Change-event macro ...........

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Column = 1 Then
Range("A:A").Select

Selection.Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlYes, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom

Range("A65000").Select
Selection.End(xlUp).Offset(1, 0).Select

End If
End Sub

hth
Vaya con Dios,
Chuck, CABGx3




"rijisaac" wrote:

How do I make a customer list that alphabetizes itself with each new entry?
I need to have individual sheets for each customer ( the main issue is that
visit dates must be documented, whether on indivual sheets of on the same as
for all customers.
thank you



All times are GMT +1. The time now is 09:29 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com