Alphabetize list on a spreadsheet?

I have a telephone list on a spreadsheet and want to alphabetize the first letter of the names on the list. How do I do that?

Hi lifswl,
Welcome to Apple Discussions and the AppleWorks forum.
If you have each name entered in a single cell in the form "John Smith", you'll not be able to sort directly by last name. See PS below.
If you have each name entered in a single cell in the form "Smith, John", a sort of the whole list using the column containing the names as the sort key will do the job.
If you have the first and last name entered in separate cells on the same line (eg. "John" in A5, "Smith" in B5) you can do a simple sort using the column containing last names (B) as the sort key. This will sort the list by last name only, putting all the Smiths together in the list, but leaving Jane, John and Bill Smith in whatever order they were before the list was sorted. A double sort, using the column holding last names as sort 1 and the column holding first names as Sort 2 will keep the Smiths together (and ahead of the Joneses), and will sort Bill, Jane and John into alphabetical order within the group of Smiths.
NOTE: Some comments on the post by RHB (Not Too Patient):
AppleWorks sorts ONLY the selected cells of a spreadsheet. If you "just select the last name column", ONLY that column will be sorted, leaving the rest of the telephone list in the same order as it was before the sort (and assigning almost everybody the wrong phone number if the list was not in order before the sort).
SELECT all of the cells containing data, press command-J (or go Calculate > Sort...), change the column letters for the sort key(s) if necessary, then click Sort. (The number in the sort key(s) is the row at the top of the selected block of cells. Don't change it.)
Address Book may be different in Panther (which RHB is using). In Tiger, the Address Book has separate fields for First and Last names. Address Book automatically keeps the cards sorted by last name then by first name.
Regards,
Barry
PS: Sorting by last name when names have been entered as "John Smith":
Things get a bit complicated here, but a last name sort is still possible. See my separate post in this thread.

Similar Messages

  • PM Equipment Structure List Download to spreadsheet

    Hi PM Experts,
    Our client is asking a solution to download (spread sheet) the expanded Equipment structure list.
    We can display equipment hierarcy through Tx code IH03 and IH04.We can take take hard copy print out from these reports.
    Any one can suggest how to download the expanded structure list of equipment higherarchy from SAP .
    Thanks and Regards
    Pradeep
    Edited by: Pradeep Sukumar on Oct 2, 2009 1:32 PM
    Edited by: Pradeep Sukumar on Oct 2, 2009 1:33 PM
    Edited by: Pradeep Sukumar on Oct 2, 2009 1:33 PM

    Hi,
    Do you have an icon 'save as local file' or a menu path 'System - List - Save - Local file' ?
    Selecting this gives further options including ability to save in spreadsheet format.
    If the icon or menu path is not active - see note [642753|https://service.sap.com/sap/support/notes/642753] which explains use of note [951898|https://service.sap.com/sap/support/notes/951898] to enable the icon or use of PM_TREE_INACTIVE parameter to enable the menu option.
    -Paul
    Please use [Enterprise Asset Management (EAM)|Enterprise Asset Management (SAP EAM); forum for PM/CS specific topics

  • Can you export the "Previous Recipients" list to a spreadsheet ?

    Is there anyway you can export the “Previous Recipients” list in mail to a spreadsheet or get them into your address book to do a group mail from there ?
    Thanks Matt

    What are you trying to do?
    Do you want to get some of the previous recipients into Address Book all in a single group?
    You can get them into Address Book as Kappy mentioned, but you'll have to then wade through the Address Book to find them and put into groups. The Last Import group doesn't catch them, and I couldn't create a smart group to gather them either.

  • Export to spreadsheet from program result list (ALV Grid) via the web

    Hello alles!
    When executing a program (a report) using SAP WebGUI or the portal (Manager's Desktop/Launchpad etc.), exporting the result list to a spreadsheet doesn't seem to work. No error message, browser doesn't really hang, but nothing happens. Neither Excel, nor XML export, nor anything works.
    Export from the same program works just fine in SAP GUI.
    (SAP Note 314568 has some information about ALV Grid export limitations, but I can't make the XML export work either...)
    Could this be a configuration error in ITS? In that case, where..?
    Or is it something we just need to live with?
    Thank you in advance!
    Brgds, Caroline

    There is a known problem regarding exportation to Excel.
    Try the following path :
    Tools --> Macro --> Security
    Then go to the "Trusted Publishers" tab and tick the "Trust acess to Visual Basic Project" option.
    This should do the trick.

  • Download music list to spreadsheet

    How can I capture my "music" list in a spreadsheet?

    There is no "downloading to a spreadsheet".
    Check out the "More Like This" section over there ==================>
    for ways to get the media in the library into a spreadsheet.

  • How to copy Excel sheet data to SharePoint 2010 List?

    Hi,
       I need to export excel data to SharePoint 2010 list. I have created 22 columns in list which are of following Column types:
    Single line of text,
    Multiple line of text,
    Choice
    Number,
    Date,
    Person or Group.
    Now i need to export the excel data to SharePoint list.
    When iam trying to copy data from excel to List , it is showing as "The selected cells are read only".
    can someone guide on this to export spread sheet data to SharePoint list without importing Spreadsheet.
    Thanks in advance.
    Badri

    I've updated the example of using PowerShell to include a Person field (user field) and a choice field.
    The CSV file has the following columns:
    TRIP_NO
    VESSEL_NAME
    FLAG
    AGENT_NAME
    CURRENT_LOCATION
    RPT_DATE
    EMPLOYEE
    EMPLOYEE_TYPE
    #Get the CSV file and connect to the SharePoint list
    $vessellist = import-csv -Path C:\Temp\VesselInPortReport.csv
    $l = (Get-Spweb "http://devmy101").GetList("http://devmy101/Lists/smarInPort")
    #Get the lists EmployeeType field (choice)
    $employeeType = $l.Fields["EmployeeType"] -as [Microsoft.SharePoint.SPFieldChoice]
    #Loop through the items and add them to the list
    $r = 1;
    foreach($item in $vessellist)
    $ni = $l.items.Add();
    #Add the Title, using the rows VESSEL_NAME column
    $ni["Title"] = $item.VESSEL_NAME;
    #Add the "Date Recorded" field, using the csv rows "RPT_DATE" column
    [DateTime]$rd = New-Object System.DateTime;
    if([DateTime]::TryParse($item.RPT_DATE, [ref]$rd)){
    $ni["Date Recorded"] = $rd;
    #Add the csv rows "TRIP_NO" column to the new list items "Trip Id" field (SPFieldNumber)
    [Int64]$tn = New-Object System.Int64;
    if([Int64]::TryParse($item.TRIP_NO, [ref] $tn)){
    $ni["Trip Id"] = $tn;
    #Add some other text properties
    $ni["Flag"] = $item.FLAG;
    $ni["Agent Name"] = $item.AGENT_NAME;
    $ni["Current Location"] = $item.CURRENT_LOCATION;
    #Add user information
    $ni["employee"] = $w.EnsureUser($item.EMPLOYEE); #In this case, the $item.EMPLOYEE value from the spreadsheet is a persons name. Eg. "Matthew Yarlett"
    $employeeType.ParseAndSetValue($ni,$item.EMPLOYEE_TYPE); #In this case, the $item.EMPLOYEE_TYPE value from the spreadsheet is valid choice present in the EmployeeType list field. Eg. "Manager"
    #Update the item
    $ni.Update()
    Write-Host ([String]::Format("Added record:{0}",$r));
    $r++;
    Regards, Matthew
    MCPD | MCITP
    My Blog
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.
    I just added a webpart to the TechNet Gallery that allows administrative users to upload, crop and format user profile photos. Check it out here:
    Upload and Crop User Profile Photos

  • Help with exporting an excel spreadsheet to sharepoint

    I've downloaded the 'Synchronising with sharepoint lists' add-in and have linked my spreadsheet to a sharepoint list, where any changes made to the spreadsheet then updates the sharepoint list. This spreadsheet is full of formulas but as soon as I click
    'synchronise with sharepoint' all of the formulas in my spreadsheet vanish. There are also no formulas in the sharepoint list but I'm not really bothered about having working formulas in my sharepoint list because I will be updating that list through my formula
    filled and rather complicated spreadsheet.
    So is there a way that I can synchronise my spreadsheet to sharepoint and keep my formulas in my excel spreadsheet? 

    Hi Sarah,
    It is difficult to answer your question without any knowledge of the calculations in your Excel spreadsheets. Not all calculations that work on your desktop excel application will work on SharePoint Excel services which is why some of your formulas are getting
    extracted.
    For more information about Excel Services in SharePoint you can refer to
    http://msdn.microsoft.com/en-us/library/office/ms517343%28v=office.14%29.aspx
    Daniel Christian (MCTS)

  • How to get list view on numbers? Yosemite

    Hi,
    How can I get my spreadsheets as a list view in the left top corner of numbers?

    Hi,
    Keyboard command doesn't work on my IMac Latej 2013, Yosemite 10.10.1 and Numbers 3.5.2.
    But even if! it wouldn't be a solution.
    And I can't believe it that apple still didn't implement the option to switch between List View for spreadsheets and the actual 'sidebar'-view.
    I am using numbers for controlling and calculation purposes and need like 15-20 spreadsheets for each project.
    I can't understand that I spent so much money for such a powerful I-Mac and I am not allowed to switch a view mode in 2015!
    I am waiting now for more than 2 years and still missing that feature.
    Is it that difficult to implement that small thing? Do I really need to switch to open-office o to accept that every time I going to make my
    controlling it will be horrible and I'll need to spend a lot of more time because of missing ordered view! ... because there is no list view?  aaarggggh!!!!
    Please.... implement that list view!!!!
    Thx
    BTW. Numbers 2.3 did have list view. But files are not compatible with iPad, ....

  • Problem while saving list output as local file.

    Hi Gurus!
    i want to save the list output of classical report into excel but complete data is not coming into excel file.
    [SYSTEM - > LIST ->SAVE ->  LOCAL ->SPREADSHEET ]
    when same output is transfer to unconverted file [notepad ] then completed data is coming.
    please help me ,
    points sure!
    Rahul
    Message was edited by:
            rahul deshmukh

    Yes Rahul, I know that and you have to do the formating. This is how you can do.
    Open the unconverted file in Excel format.
    Select the first column and then goto Data - Text to Columns , a pop up will come.
    Select Delimited, then press next.
    Then selct the delimeter that is used in the unconverted file to seperate two columns. Say for example if ' | ' is used then in others write ' | ' and press next.
    IN the data preview section select all the columns and then select text radio button on top and press finish finally.
    Now u will get the proper format of the file. Delete all the empty rows and columns that u don't want.
    Reward if you find it useful.
    Regards.
    Akhil.

  • Exporting Workgroup users as a spreadsheet

    I would like to export the workgroup manager user list into a spreadsheet.
    Ideally using the comma/tab separated format but I am unsure how to do this.
    Any help would be appreciated!
    Thanks in advance!

    You can export from WGM into MacInMind's Passenger. Here's the first paragraph from their website.
    "1. Import Database Text
    Passenger takes comma, colon, or tab-delimited text, basic LDIF, Mac OS X Server & ASIP XML, or folder names of a user directory and imports names and other information to prepare for import into a server or other user file management functions."
    Passwords will not be exported.

  • VF05 report(Billing doc list) exporting to excel sheet

    Hi
    I would like to export the VF05 report( Billing doc list) into the predefined layout of Excel sheet. How can we do this.
    Can anyone of you explain me this. It is the business requirement and they do not want to go for SAP scripts or zprogram.
    IT IS URGENT. PLEASE HELP ON...

    List -> Save -> File -> Spreadsheet (from the output screen)
    Give the location where you want to save the file and the file name and press "Generate".
    BTW, Welcome to SDN.

  • QA32 spreadsheet needs to unmark the button "always use selected format"

    Hello Experts.
    I am currently doing some testings in QA32, i want to transfer my list in printable documents, when i am in the menu LIST- EXPORT - SPREADSHEET , then the list for choices appears if(excel, all available formats)then there is this button box "always use selected format" which i have marked it and saves..then when after i proceed to QA32 again, i can't choose the format that i want in the selection.I believe it is the result of marking the button "always selected use format"
    how can i unmarked the  button "always selected use format" so i can have the chance to choose again?
    Thanks

    Exporting to Spreadsheets  
    Use
    You can export the list as various spreadsheet formats. The following list summarizes the most important of these formats and the corresponding file name extension for the files:
    Format
    File Name Extension
    Excel (in MHTML format)
    MHTML
    Excel (in MHTML format for 2000/97)
    MHTML
    Star Office (in ODS format 1.0)
    ODS
    Excel (in Office 2003 XML format)
    MHTML
    SAP-internal XML format
    XML
    SAP standard (internal table)
    XML
    Excel (in previous XXL format)
    XLS
    A format is only included in the selection options if it is available on your PC. The system administrator can also restrict the list of possible formats or even reduce the export to a certain format.
    When you export the list in one of these formats, the system automatically generates a file with the name export and with the corresponding file name extension. Exactly which parts of the list are exported to the file depends on the format.
    Exactly which data is exported to the file depends on the format:
    ●      In MHTML and XML formats, for example, you export the data that is displayed in the list on the screen. The number, selection, and sequence of columns as well as the sorting, filter, and calculation settings are all included in the export.
    ●      In Excel XXL format, any functions that you executed on the list are not included in the export. The file contains all the columns that you have displayed, but your sorting, filter, and calculation settings are ignored.
    Prerequisites
    To be able to display and, where necessary, further edit the file that you have generated with the export, the relevant program must be installed.
    Procedure
    Exporting the List
           1.      Choose  with the quick info text Export and select Spreadsheet in the selection list. In full-screen mode, choose List ® Export ® Spreadsheet.
    If you have a choice of more than one format, the Select Spreadsheet dialog box opens.
           2.      In the Select Spreadsheet dialog box, select the format in which you want to save the exported data.
           3.      Confirm the settings.
           4.      In the dialog box that appears, specify the path and name of the file and save the file.
    For some formats, you also need to specify other settings for the file that is saved.
           5.      Make the required settings, where applicable.
    If an installed program is linked to the selected file name extension, this program is started automatically and the generated file is opened.
    Keeping Settings
    If you plan to reuse the same spreadsheet format, you can save the settings for the format. By doing this, you can omit the step with the Select Spreadsheet dialog box and can export the list more quickly.
           1.      Proceed as described above in steps 1 and 2.
           2.      In the Select Spreadsheet dialog box, select Always Use Selected Format.
           3.      Confirm your settings and continue as outlined above.
    From now on, whenever you export your list as described above, you bypass the Select Spreadsheet dialog box step and proceed immediately to saving the data.
    4.      If you want to display the Select Spreadsheetdialog box again during the export, in the context menu for the list, choose Spreadsheet.
    The dialog box opens; the Always Use Selected Format indicator is not set.

  • Get-ACL Error Continuation and Server List

    Hi All,
    I'm conducting an audit of all folders on network shares that are spread accross several servers.  I'm very new to PS but from my research I have put together the following:
    Get-ChildItem \\server\share -Recurse | Where-Object{($_.psiscontainer)} | Get-Acl | select-object path -expandproperty access | Export-CSV results.csv
    This has been working ok but I hit an 'unauthrosied operation' error when it trys a folder that I do not have permissions to (i'm running as domain admin).  That's fine but it's a termination error which I can't seem to work around.  I have tried
    things like -ErrorAction SilentlyContinue but it just stops without producing the error and will not continue.  I have also tried a try and catch which I found on Technet but can't seem to get the -recurse to work:
    $fse = Get-ChildItem \\server\share -recurse | Where-Object{($_.psiscontainer)}
    $fse | %{$f=$_; try { get-acl $_.FullName } catch { Write-Warning "Failed to access $($f.FullName)" }}
    I've tried my best to get the code to continue after the error but I just can't see what I am doing wrong.  Any ideas?
    Also, I have many many shares to test which are all listed in a spreadsheet.  I'm been trying to research how I can use this spreadsheet instead of writing in the server and share for every one I want to test.  However this is now going way above
    my head and I can't get anywhere near to a semi-working example.  Is there a way I can use the above to reference a spreadsheet and test each share that is listed?
    Many Thanks.

    OK I have got it to run by using
    try
    Import-csv .\test.csv | % {Get-ChildItem $_.Servername -Recurse -ErrorAction Stop| Where-Object{($_.psiscontainer)} |
    Get-Acl | select-object path -expandproperty access | Export-CSV results.csv }
    }Catch{
    $_.Exception
    continue;
    However it still terminates when it gets to a folder it does not have the permission to access the ACL.
    I'd add a separate ForEach-Object call for each object returned from Get-ChildItem. Does this work?
    Import-Csv .\test.csv | ForEach-Object {
    Get-ChildItem $_.Servername -Recurse | Where-Object { $_.PSIsContainer } | ForEach-Object {
    try {
    $Path = $_.FullName
    $_ | Get-Acl | Select-Object Path -ExpandProperty Access
    catch {
    # You can ignore this, write a warning, send this to a separate file, etc
    Write-Error ("Error calling Get-Acl on '{0}': {1}" -f $Path, $_.Exception.Message)
    } | Export-Csv results.csv
    That will simply write any errors to the screen. Is that good enough, or did you want to store them somewhere?

  • 'Spreadsheet Table' component formatting

    Hi,
    I have an excel "block" of data that is formatted to the client's expectation. Is it possible to capture those specific formats using the Spreadsheet Table Component (or some other)? It appears that most of my formats are lost, especially the "Wrap Text".
    Is there a way to wrap text using the Grid, List View, or Spreadsheet Table modules on Xcelsius 2008 SP3?
    Thanks in advance!
    -Phil

    I dont think you can do this with any other component except Spreadsheet one. Try playing more with the spreadsheet table component
    the only way i can think of is if you can delete all the text in that block of data and map the spreadsheet table on that - by doing  this you will have the basic structure of that block of data and then you can use lables to do the formatting
    hope it helps

  • Spreadsheet Columns -- How to Name?

    I've learned how to Define the Names of Columns but what I want to do is change the A, B, C, D etc in a spreadsheet column to a name like Author -- so that it shows instead of A, B, C, D across the top and leave a1, b1,c1,d1 empty to add content? I want to make a chart with Author, Title, Comments, Date Finished and keep track of these entries by numbers on the left side of page. HOW ?
    G5 iMac   Mac OS X (10.4.3)  

    "I want to make a chart with Author, Title, Comments, Date Finished and keep track of these entries by numbers on the left side of page. HOW ? "
    Hi Nan,
    Welcome to the discussions and the AppleWorks forum.
    Although it's probably easier to start this type of list in a spreadsheet, the task is one more suited to the database, particularly if you're going to add anything beyond short comments.
    Looking over the "Wine List" database included in Starting Points > Templates will give you some ideas toward creating a Book list database. In "List" (near the top of the Layout menu), a database file displays in a manner very similar to a spreadsheet (but with the field names at the top of each column. The Wine List db also includes a "List View" layout (this one near the bottom of the Layout menu) which is similar, but 'prettier', and offers more control of the display. It was created using Columnar report, found in the New layout... item in the Layout menu.
    If you decide to stick with the spreadsheet for now, it's fairly easy to transfer the data to a database later.
    Adding to Ed's comments regarding the spreadsheet:
    You can remove the column and row headers using the Display item in the Options menu. Before you do that, make the changes described below.
    Leave Column A free for numbering the items, then enter your headings into the first cell in each column, starting with "Author" in B1.
    In A2, enter =ROW()-1
    Select cells A2..A500 (or as far as you wish to enter item numbers).
    Go (to the) Calculate (menu and choose) Fill Down. AppleWorks will fill the formula in A2 into the selected cells, and will calculate numbers 1..499 to display in these cells.)
    With the cells still selected, go Edit > Copy.
    Then go Edit > Paste special... Values only. (These two steps replace the formulas you entered with the values calculated by the formulas. This keeps the numbers fixed if the spreadsheet is sorted, allowing a sort on column A to restore the original order.)
    Regards,
    Barry

Maybe you are looking for

  • Write array to file

        Hi, i am trying to write an array coming out of a for loop into a file. If i plot the array in the Front panel everything works, but if i write it to a text file some aditional characters (empty space and this rectangle) appear. The file should l

  • Using a new ipod with old library

    I recently switched from a 2nd generation to a video...When i tried to importmy library, some of the songs did not transfer and said I was not authorized to listen. I also recently purchased a video from itunes that will not add to my ipod when I dra

  • How to show the content for a perticular time period(consider 30 days)

    Hi, There is a requirement that content should reside the portal only for 30 days and then it should be archived. Archiving means that it should be searchable from portal but it should not be visible on the portal. How would that happen?. Kindly tell

  • Contacts list Sim list

    Having copied the Address book from my Palm to my Curve 8520, I find it is sharing the folder with the Contacts list from my Sim card.  Can I do anything to ensure that the folder always opens to the Sim card list first?

  • Question re authorising my computer

    I installed Digital Editions and tried to authorise my computer but got a message saying "Activation Server Error - Code E_AUTH_NOT READY".  What does this mean?  What do I do now?