Pages:  How can I sort one column of words and not have it affect the other columns?

How can I sort one column of words and not have it affect the other columns?  I have opened the inspector to the edit columns and rows under Table.  It will sort the column, but then it changes the other colums as well.  I know that if I use Numbers, it will work, but I want to know how to do the same thing in Pages.

Hi Peter,
Numbers sorts full rows on values in selected column(s). The technique for sorting a single column is essentially the same as Jerry is describing for Pages tables—separate the (data in the) column to be sorted, sort it, return it to the table.
In Numbers the actual column may be separated from the original table, sorted, then returned. In Pages, the data must be extracted, sorted, then pasted back in, overwriting the unsorted data (if it was left in the original table).
iWork tables follow a database model in which each row is a Record, and each column holds a Field within the records.
As evidenced by the current question (and several similar questions arising in the Numbers community) that model doesn't apply to the way some users, especially some who come in from the MS Excel world, use tables.
With Excels model—islands of data on a single large table, the ability to sort one or a selected few columns of data makes sense. One 'island' may comprise only cells AA21:AH50. Sorting that small 'table' should be possible without disturbing the rest of rows 21-30, which are probably part of one or more other 'data islands' in the sea that is a MS Excel spreadsheet.
In Numbers, each of those 'islands' would be a separate Table, and that Table would be sortable without disturbing other Tables in the document.
Regards,
Barry

Similar Messages

  • How can I import all of my bookmarks and not just some of the like the import tab does?

    I tried to import my bookmarks but it took only a few bookmarks and left most of my list behind. I tried the import from IE many times and get the same result so how can I get all my bookmarks moved over?

    If you have problems with importing the IE Favorites in Firefox then export the favorites in IE to an HTML file and import that file in the Firefox Bookmarks Manager.
    If you do not have the menu bar in IE then right-click the toolbar at the top to enable the Menu Bar.
    * Export the favorites in IE to an HTML file (bookmarks.html):<br>File > Import and Export
    * Import the HTML file in Firefox:<br>Bookmarks > Show All Bookmarks > Import & Backup > Import Bookmarks from HTML: From File
    See "Import from another browser" and "Import from file":
    * http://kb.mozillazine.org/Import_bookmarks

  • How can I reboot my Ipad when I do not have access to the power off screen?

    My device slide off my couch while in its cover. IT was working afterwards, for about 5 min. I sat it down while I took something out of the oven and was back maybe 5min. or so later. When i try to access it, all I see is a black screen. I cannot unlock it or even power off. How can I reboot it without the power off swipe ?

    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reboot/Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10-15 seconds).
    Restore: Connect your iPhone to iTunes on your computer, backup, and then select Restore to Factory

  • How can I switch my primary apple ID and not have to buy apps again?

    I would like to switch my primary ID to another one because I don't have access to that email address anymore.  I have few apps which I bought under that ID which I'd like to keep if possible.  Furthermore, I'd like to use the original apple ID for my icloud account and use the new ID for the same device for itunes store.  Is this possible?  Thanks.

    This may help.
    How to change the name you use for your Apple ID
              http://support.apple.com/kb/HE40

  • Trying to add 2 slideshows to one page, how can I make a slideshow so it does not show an image...

    Trying to add 2 slideshows to one page, how can I make a slideshow so it does not show an image until they click on the thumbnail?

    You can do this with "composition" widgets.

  • How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?

    How can I manage six email accounts WITHOUT them all appearing (twice) in the Folders column?
    All I need is ONE INBOX (like Windows Mail used to do) ...
    I can see in the 'Account' column of each message which email account it's using.
    Then, I either junk or read the message, followed by delete or file to one of my created folders.
    As it is, half my page is depth is taken up by 12 lines of Account names !!!

    That still leaves SIX lines of Account names down the side. All I want is ONE INBOX ... (I can see which account each message belongs to in the 'Account' column...)

  • How can I make one list of all events I have in over 30 libraries I made

    How can I make one list of all events I have in over 30 libraries I made?

    The only way I know of is to take a screenshot of the Photo mode with the View ➙ Show Event Titles selected.  That will give you a list of sorts.  Might take more than one screenshot per library.
                   Click to view full sized
    OT

  • How can we know one transaction is enhanced or not ?

    how can we know one transaction is enhanced or not ?

    first find enhancements related with a perticular tcode using following prog. :
    *& Report  ZUSEREXIT                                                   *
    report zuserexit no standard page heading.
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
             tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
       select single * from tadir where pgmid = 'R3TR'
                        and object = 'PROG'
                        and obj_name = tstc-pgmna.
       move : tadir-devclass to v_devclass.
          if sy-subrc ne 0.
             select single * from trdir where name = tstc-pgmna.
             if trdir-subc eq 'F'.
                select single * from tfdir where pname = tstc-pgmna.
                select single * from enlfdir where funcname =
                tfdir-funcname.
                select single * from tadir where pgmid = 'R3TR'
                                   and object = 'FUGR'
                                   and obj_name eq enlfdir-area.
                move : tadir-devclass to v_devclass.
              endif.
           endif.
           select * from tadir into table jtab
                         where pgmid = 'R3TR'
                           and object = 'SMOD'
                           and devclass = v_devclass.
            select single * from tstct where sprsl eq sy-langu and
                                             tcode eq p_tcode.
            format color col_positive intensified off.
            write:/(19) 'Transaction Code - ',
                 20(20) p_tcode,
                 45(50) tstct-ttext.
                        skip.
            if not jtab[] is initial.
               write:/(95) sy-uline.
               format color col_heading intensified on.
               write:/1 sy-vline,
                      2 'Exit Name',
                     21 sy-vline ,
                     22 'Description',
                     95 sy-vline.
               write:/(95) sy-uline.
               loop at jtab.
                  select single * from modsapt
                         where sprsl = sy-langu and
                                name = jtab-obj_name.
                       format color col_normal intensified off.
                       write:/1 sy-vline,
                              2 jtab-obj_name hotspot on,
                             21 sy-vline ,
                             22 modsapt-modtext,
                             95 sy-vline.
               endloop.
               write:/(95) sy-uline.
               describe table jtab.
               skip.
               format color col_total intensified on.
               write:/ 'No of Exits:' , sy-tfill.
            else.
               format color col_negative intensified on.
               write:/(95) 'No User Exit exists'.
            endif.
          else.
              format color col_negative intensified on.
              write:/(95) 'Transaction Code Does Not Exist'.
          endif.
    at line-selection.
       get cursor field field1.
       check field1(4) eq 'JTAB'.
       set parameter id 'MON' field sy-lisel+1(10).
       call transaction 'SMOD' and skip first   screen.
    THEN check into each enhancement whether any one has been changed.
    Pls reward if usefull
    S@meer

  • HT4436 how can i setup one account for me and my kids ?

    how can i setup one account for me and my kids ?

    One account each, or one account for all of you to share?
    Either way, follow the instructions here: http://www.apple.com/icloud/setup/
    Remember, if you share an iCloud account, you won't be able to maintain independent Contact lists, calendars, bookmarks etc. They will all be synced to all devices setup using the same account.

  • How can I print a whole email document and not a "screen shot" like I get in the Print Preview option.

    How can I print a whole email document and not a "screen shot" like I get in the Print Preview option. I'd like to print from "file" and print" like I can on other browsers (IE, for example). When I try to print from Firefox it grabs all my info (file folders, etc.) from the left side of the page. I need just the email information, not the entire screen information. Thank you!
    -Bruce

    I agree; I should, but I can't :) I have an orange Firefox drop down that I go to to print, and it allows me to select "print", "print preview" and "print setup", where I can change the margins. It always defaults to a full screen shot (I use Yahoo) and does not show just the email. I don't need to print what is on the left side of the screen or anything other than the email (I can achieve these things by using file-print from IE, so I know it is doable, and I am still going into Yahoo and using their email when I do it).
    Hope this helps. I'm not a fan of IE, but I really don't like the print properties I'm getting here (I'm a long time Mozilla user, but I'm losing too much info with this option and can't afford that anymore).
    Thanks for the help!
    -Bruce

  • HT2534 I already made an accoount, so how can I change it so that I do not have to choose a type of credit card. Cause it does not give me the option of NONE

    I already made an accoount, so how can I change it so that I do not have to choose a type of credit card. Cause it does not give me the option of NONE

    Did you follow the instructions on that page exactly ? The instructions work for me e.g. selecting a free app in the App Store app and tapping on 'free', then 'install app' and 'create new apple id' - filling in my details then gave a 'none' option on the payment details :

  • HT201210 how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    how can i retrieve texts from an earlier back up without changing all the other settings on my iphone?

    You can't. Restoring from a backup is all or none.
    You can use a utility such as this one to extract the messages from the backup on your computer but you can't re-transfer the messages to the Messages app on your iPhone.
    http://msb.macsupport-pr.com/

  • I want to have different headers in Pages. I want to be able to set them and not have them be the same. For example I want ii then iii and so on...How do I do that?

    I want to have different headers in Pages. I want to be able to set them and not have them be the same. For example I want ii then iii and so on...How do I do that?

    Hi BelleDesign,
    "Headers" is short for "Continuing Headers."
    Use a Header when you want recurring information on a series of pages in your document.
    If ii, iii, etc. are page numbers, you can place them in Headers using Insert > Page Number, then formatting the page number to lower case Roman numerals.
    For more on Headers and Footers, see Chapter 3, Working with document parts in the Pages '09 User Guide, available for download via the Help menu in Pages. Discussion of Headers and Footers starts on Page 54.
    Regards,
    Barry

  • I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe

    I am trying to reinstall Dreamweaver CS3 from the CD after having computer issues.  Now getting error "You can only install one Adobe product at a time.  Please complete the other installation before attempting to install ......."  There is no other Adobe product installing.  I have used the Adobe Cleaner Tool many times and uninstalled other Adobe Products but neither has worked.  I have uninstalled/reinstalled this CD version of Dreamweaver several times when changing computers and after having computer issues. A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.  Please help.

    A google search of the problem suggested it may be an error related to the number of times I can reinstall this product due to licensing issues.
    Absolutely not. You are misinterpreting things. The activation check never happens when just running the installer, only much later. It means what it says - there is another "install" pending/ active on your system, meaning somewhere there is an (invisible) process still blocking things. Either way, since you haven't provided any real technical info, we can't advise specifically. if you are on Windows, you may want to check your task manager and terminate any setup.exe and msiexec.exe processes plus potentially may need to manually fix/ delete some registry keys. For anything beyond that you will have to be much more specific.
    Mylenium

  • How can I make my account in syria and i have not acredt card

    how can I make my account in syria and i have not acredt card

    Sorry.  Don't believe that is possible.

Maybe you are looking for

  • Cisco ASA 8.6 configuration issues

    Hello all ,                                              internet router-----------outside------------- ASA -------inside-------------cisco 3750 (----A----)                                                                                              

  • How do I correct General Printer error 0X610000f6 for a HP Officejet 6500

    The printer keeps throwing this erro message out.  How can I correct it.

  • Aspect ratio issue

    Hi, I have had this issue for several months and cannot get an answer...It started out when I downloaded Flash player 11.2. All the videos that we have posted on our client's websites are "squished" horizontally. Adobe said that it was a known issue

  • Topic: How to refer columns with same name in jdbc

    I have a join statement : Select a.col1, a.col2, b.col3, b.col2 from TABLE1 a, TABLE2 b where a.col1 = b.col1 how do I refer with same column name suppose I want to get b.col2 I get error when I try rs.getString("b.col2") or rs.getString("TABLE2.COL2

  • Unlocked iPhones sold in the US and brought to Europe

    When purchasing an unlocked iPhone, is the phone number acquired with each SIM card or the phone itself?