Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello everyone, I have Lastname, Firstname information in the cell ranges below in a spreadsheet named "Position Control."
A9:A38 C9:C38 E9:E38 G9:G38 I9:I38 MK9:K38 M9:M38 O9:O38 Q9:Q38 S9:S38 Not every cell in the above range is utilized. Some ranges may have 5 names in it. Another may have 12 names and so on. The question is how can I get the data from each of these ranges copied into column A of spreadsheet "Team Members" and sorted alphabetically? The end result of Column A in spreadsheet "Team Members" is one long list of Lastname, Firstnames. After that operation is complete I would like to do something to lock the Position Control spreadsheet so the names cannot be changed. Thank you very much. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Claus,
It threw an error with this line of code: ..Range("A:A").Sort key1:=.Range("A1"), order1:=xlAscending, Header:=xlNo |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi John,
Am Thu, 16 Nov 2017 13:20:01 -0800 (PST) schrieb : It threw an error with this line of code: .Range("A:A").Sort key1:=.Range("A1"), order1:=xlAscending, Header:=xlNo that must be in one line. Try it this way: ..Range("A:A").Sort key1:=.Range("A1"), order1:=xlAscending, _ Header:=xlNo Regards Claus B. -- Windows10 Office 2016 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
help with copying data from many columns into one long column | Excel Discussion (Misc queries) | |||
Copying data from 205 columns to 1 column | Excel Worksheet Functions | |||
Need help copying data from one column to specific columns | Excel Programming | |||
Copying One column into Two columns | Excel Discussion (Misc queries) | |||
Copying 1 column into multiple columns | Excel Discussion (Misc queries) |