How can I sort multiple tables on a single page as if they were one continuous table?

I have a single narrow column of numbers that cover multiple pages. I would like to do either of the following: break that long single column into multiple colums that fit on one page and are still able to be sorted in that arrangement OR sort the long column as it is (spread out over multiple pages) and then break that long sorted column down into multiple segments that can be placed onto a single page.
I have been sorting the long single column, then copy and pasting sections from the column onto a new page so that I can print them on a single page.
I am hoping there is a more elegant method to do this.

Hi Walt,
Sorting is one of the things that changed between Numbers '09 and Numbers 3. If you are on Mountain Lion I want to assume you are using '09. Is that true?
This will work in '09 and 3. Table one is a single column with entries 1-89.
A2 ==INDEX(Table 1 :: $A,ROW())
B2 =INDEX(Table 1 :: $A,ROW()+35)
C2 =INDEX(Table 1 :: $A,ROW()+70)
The formulas are filled down.
You can adjust the formulas in B and C to reflect how many rows fit on your page.
quinn

Similar Messages

  • How can we save multiple IDocs as a single Flat file in R/3 system ?

    Hi,
    How can we save Multiple Idocs as a single Flat IDoc in R/3 (Not xmlized)
    Kulwinder

    Hi,
    Check this link for Mutiple IDOCs into single File.
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm
    Regards,
    phani
    Reward points if Helpful:)

  • PDF's print two sided.  How can I get them to print on single pages?

    PDF's print two sided.  There is no option shown.  How can I get thelm to print on single pages?

    1: Go into iTunes.
    2: Right click on the song and choose 'Get Info' (or press cmd+i on a Mac).
    3: In 'Info' change the album name to the one you want it to go into, when you start typeing it should automatically come up.
    4: Check that the disk number and track number is correct.  It should be automatic.
    4: Press OK.
    You should see it go into the album now.

  • How can iPhone videos sent to another iPhone be made clear like they were recorded even though it sent as a text. with iMessage it's clear but when it's not available the quality *****, how can I make a received vid clear again??? help

    how can iPhone videos sent to another iPhone be made clear like they were recorded even though it sent as a text. with iMessage it's clear but when it's not available the quality *****, how can I make a received vid clear again??? help

    This is determined by your carrier. SMS/MMS is a poor man's email and by that I mean SMS/MMS has major restrictions and limitations compared to email but is a cash cow for cell phone carriers.
    Upload the video to YouTube when connected via wifi and send the YouTube link via text.

  • HOW CAN I  USE MULTIPLE INNERJOINS IN A SINGLE SELECT STATEMENT?

    HI,
    I AM SHABEER AHMED,
    I AM GETTING AN ERROR WHILE I ATTEMPT TO EXECUTE A SELECT STATEMENT WITH MULTIPLE INNER JOINS . BECOZ I WANT TO FETCH ITEM DATA, PARTNER DATA  BASED ON HEADER DATA .
    THEN OF COURSE I HAVE FETCH DATA FROM VBAK VBAP VBKD SO LZ SEND ME THE SOLUTION.
    BYE

    Hi,
    1.Just see this:
    SELECT * INTO CORRESPONDING FIELD OF TABLE itab
    FROM t1 INNER JOIN t2 ON t1f4 EQ t2f4
    INNER JOIN t3 ON t2f5 EQ t3f5 AND
    t2f6 EQ t3f6 AND
    t2f7 EQ t3f7.
    2.But better to use for all entries.It increases the performance.
    FOR ALL ENTRIES
    Tabular Conditions
    The WHERE clause of the SELECT statement has a special variant that allows you to derive conditions from the lines and columns of an internal table:
    SELECT ... FOR ALL ENTRIES IN <itab> WHERE <cond> ...
    <cond> may be formulated as described above. If you specify a field of the internal table <itab> as an operand in a condition, you address all lines of the internal table. The comparison is then performed for each line of the internal table. For each line, the system selects the lines from the database table that satisfy the condition. The result set of the SELECT statement is the union of the individual selections for each line of the internal table. Duplicate lines are automatically eliminated from the result set. If <itab> is empty, the addition FOR ALL ENTRIES is disregarded, and all entries are read.
    The internal table <itab> must have a structured line type, and each field that occurs in the condition <cond> must be compatible with the column of the database with which it is compared. Do not use the operators LIKE, BETWEEN, and IN in comparisons using internal table fields. You may not use the ORDER BY clause in the same SELECT statement.
    You can use the option FOR ALL ENTRIES to replace nested select loops by operations on internal tables. This can significantly improve the performance for large sets of selected data.
    Example for ALL ENTRIES
    DATA: TAB_SPFLI TYPE TABLE OF SPFLI,
    TAB_SFLIGHT TYPE SORTED TABLE OF SFLIGHT
    WITH UNIQUE KEY TABLE LINE,
    WA LIKE LINE OF TAB_SFLIGHT.
    SELECT CARRID CONNID
    INTO CORRESPONDING FIELDS OF TABLE TAB_SPFLI
    FROM SPFLI
    WHERE CITYFROM = 'NEW YORK'.
    SELECT CARRID CONNID FLDATE
    INTO CORRESPONDING FIELDS OF TABLE TAB_SFLIGHT
    FROM SFLIGHT
    FOR ALL ENTRIES IN TAB_SPFLI
    WHERE CARRID = TAB_SPFLI-CARRID AND
    CONNID = TAB_SPFLI-CONNID.
    LOOP AT TAB_SFLIGHT INTO WA.
    AT NEW CONNID.
    WRITE: / WA-CARRID, WA-CONNID.
    ENDAT.
    WRITE: / WA-FLDATE.
    ENDLOOP.
    INNER JOINS
    In a relational database, you normally need to read data simultaneously from more than one database table into an application program. You can read from more than one table in a single SELECT statement, such that the data in the tables all has to meet the same conditions, using the following join expression:
    SELECT...
    FROM <tab> INNER JOIN <dbtab> AS <alias> ON <cond> <options>
    where <dbtab> is a single database table and <tab> is either a table or another join expression. The database tables can be specified statically or dynamically as described above. You may also use aliases. You can enclose each join expression in parentheses. The INNER addition is optional.
    A join expression links each line of <tab> with the lines in <dbtab> that meet the condition <cond>. This means that there is always one or more lines from the right-hand table that is linked to each line from the left-hand table by the join. If <dbtab> does not contain any lines that meet the condition <cond>, the line from <tab> is not included in the selection.
    The syntax of the <cond> condition is like that of the WHERE clause, although individual comparisons can only be linked using AND. Furthermore, each comparison must contain a column from the right-hand table <dbtab>. It does not matter on which side of the comparison it occurs. For the column names in the comparison, you can use the same names that occur in the SELECT clause, to differentiate columns from different database tables that have the same names.
    The comparisons in the condition <cond> can appear in the WHERE clause instead of the ON clause, since both clauses are applied equally to the temporary table containing all of the lines resulting from the join. However, each join must contain at least one comparison in the condition <cond>.
    Example for INNER JOINS
    REPORT demo_select_inner_join.
    DATA: BEGIN OF wa,
    carrid TYPE spfli-carrid,
    connid TYPE spfli-connid,
    fldate TYPE sflight-fldate,
    bookid TYPE sbook-bookid,
    END OF wa,
    itab LIKE SORTED TABLE OF wa
    WITH UNIQUE KEY carrid connid fldate bookid.
    SELECT pcarrid pconnid ffldate bbookid
    INTO CORRESPONDING FIELDS OF TABLE itab
    FROM ( ( spfli AS p
    INNER JOIN sflight AS f ON pcarrid = fcarrid AND
    pconnid = fconnid )
    INNER JOIN sbook AS b ON bcarrid = fcarrid AND
    bconnid = fconnid AND
    bfldate = ffldate )
    WHERE p~cityfrom = 'FRANKFURT' AND
    p~cityto = 'NEW YORK' AND
    fseatsmax > fseatsocc.
    LOOP AT itab INTO wa.
    AT NEW fldate.
    WRITE: / wa-carrid, wa-connid, wa-fldate.
    ENDAT.
    WRITE / wa-bookid.
    ENDLOOP.
    Regards,
    Shiva Kumar(Reward if helpful).

  • How can I print multiple photos on the same page from iPhoto?

    I want to print multiple pictures on one paper. How can I do that from iPhoto? If I select multiple photos they are printed on separate pages.

    Select the photos and click print - select the printer, paper size and print size (be sure that they will physically fit on the paper) and click customize - on the resulting page click on the settings icon - the gear looking thingy at the bottom - and in the selection window set print multiple photos on a page - the preview should reflect this change - and click print again to continue
    LN

  • How can I connect multiple clients to a single client ?

    I am currently developing an instant messaging program.I created a server and connected multiple clients to it by using thread logic.However I do not know how to connect multiple client to a single client.
    What shall I do for that?Does anybody know a good tutorial or sample program?Or shall anybody explain me what I shall do for building the Instant Messaging part of my chat program?
    Thank u in advance.

    You may use UDP multicast socket. But since you are using the UDP protocol you might risk losing the data that you send since UDP does not guarantee the safe transfer of data.
    Alternately, you might create a server that allows multiple client to connect to it whose connection Socket objects are then stored in a Vector <Socket> object. The server then sends back data to the connected client about the other clients connected to it. Now when the client wants to send data (like an IM) to another connected client, it has to send a request to the server specifying the client login name and the server in turn streams that particular client's Address and Port to the requesting client. The requesting client then initiates the connection with the other client and then starts a conversation. One more thing, when the client communicates it needs to send information to the server like the name by which it likes to be referenced. In this scenario the server acts like a central repository for clients to query the existence of other clients in the chat room. Each client here runs a thread that listens to incoming connections and when a connection is established, may be opens a IM window or something.
    The third option is to make the server to relay the information from one client to another. Like say, I'm connected to whoopy server and i want to send "Hello" to jackson, then i send the message (ie, Hello) along with the name of the client to which i wish to send it to (ie, jackson). The server then performs a lookup in its Vector <Socket> object and then initiates a connection with jackson and sends the information. However, this method is pretty costly in that you will be wasting a lot of processing behind the server.
    --Subhankar
    P.s. If you stumble upon any other brilliant ideas let me know.

  • How can we see multiple devices on a single map using find my ipad?

    We have 70 iPad/iPhone devices that we want to locate at any given time.  How can we display them on a single map?

    if they use the same appleID then you can do it at www.icloud.com

  • How can I print multiple pictures on a single sheet?

    Today 3/27/2012 I tried downloading HP software that says it has a new feature that allows printing multiple pictures on a single sheet of photopaper.  The download started and halted at only one square and sat there flashing for hours, meaning it wasn't downloading on my Pavilion desktop computer.  Since it's a new feature (apparently), no wonder no one as yet has asked this question and so I doubt if anyone has the answer.  But, I'll wait to see.

    You are probably going to get help by posting in the iPhoto forum. You can easily locate it by clicking on Apple Support Discussions on the top left of this page then navigating to the iPhoto forums.
    Roger

  • How can i add multiple validations for a single input box in adf?

    hi,
    i want to add multiple validation for a single input text control in adf like number validation and its existence in database.
    MY JDEV VERSION IS 11.1.1.5.0
    pls help !!!!

    Hi,
    1.I want to validate if the value entered is pure integer
    Option 1-
    select the component and in the Property Inspector, in the "Core" category select a "Converter" format, select javax.faces.Number, if the user put a string, adf show a dialog error or message error...
    Option 2-
    or use the Regular expression:-
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_validateRegExp.html
    https://blogs.oracle.com/shay/entry/regular_expression_validation
    Also check this:-
    http://docs.oracle.com/cd/E15523_01/web.1111/b31973/af_validate.htm#BABHAHEI
    Option 3-
    Frank in his great book 'Oracle Fusion Developer Guide' shows a example using a javascript for input which is allowed only for numbers. You can manipulate for your requirement.
    Here is the code:
    function filterForNumbers(evt) {
        //get ADF Faces event source, InputText.js
        var inputField = evt.getSource();
        var oldValue = inputField.getValue();
        var ignoredControlKeys = new Array(AdfKeyStroke.BACKSPACE_KEY, AdfKeyStroke.TAB_KEY, AdfKeyStroke.ARROWLEFT_KEY, AdfKeyStroke.ARROWRIGHT_KEY, AdfKeyStroke.ESC_KEY, AdfKeyStroke.ENTER_KEY, AdfKeyStroke.DELETE_KEY);
        //define the key range to exclude from field input
        var minNumberKeyCode = 48;
        var maxNumberKeyCode = 57;
        var minNumberPadKeyCode = 96;
        var maxNumberPadKeyCode = 105;
        //key pressed by the user
        var keyCodePressed = evt.getKeyCode();
        //if it is a control key, don't suppress it
        var ignoreKey = false;
        for (keyPos in ignoredControlKeys) {
            if (keyCodePressed == ignoredControlKeys[keyPos]) {
                ignoreKey = true;
                break;
        //return if key should be ignored
        if (ignoreKey == true) {
            return true;
        //filter keyboard input
        if (keyCodePressed < minNumberKeyCode || keyCodePressed > maxNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            //no need for the event to propagate to the server, so cancel
            //it
            evt.cancel();
            return true;
        if (keyCodePressed > maxNumberKeyCode && keyCodePressed < minNumberPadKeyCode) {
            //set value back to previous value
            inputField.setValue(oldValue);
            evt.cancel();
            return true;
    2.I want to check if the value exists in my respective DB You must be having EO or VO if you want to validate with database in that case use the solution suggested by Timo.
    Thanks
    --NavinK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • TS2128 How can I select multiple SEPARATE objects/words in Pages (Mavericks version)?

    When I type a document and decide to italicise a couple of separate words throughout the document how can I select them at once? Pressing Shift selects all the words between the first and the second, that does not help me. In Pages 09 it worked with either cmd or ctrl or alt (I don't remember which, but one of them worked) but I tried all of them now and nothing happens.
    Can anyone help me?
    Thank you!

    You can't do it anymore. Pages 5 is a stripped application and has lost about 90 feature that Pages 09 has. Read more about it in other threads in this forum.

  • How Can I Fax Multiple Documents in a Single Fax?

    I need to fax several documents as a single fax. I scanned all the docs into my Mac and now have half a dozed individual files. I select all the files and launch them in preview, but when I go print to fax, only the currently displayed document is faxed. I have selected "Select All" but that did nothing. I don't think I should have to send each scan individually!!
    Is there a simple way to fax multiple images/scans/documents/etc. to the same number in one shot, WITHOUT using a program like Word and importing all the scans and creating a multi page word doc.
    You would thing Preview should be able to print all docs currently displayed in the side bar.
    Any help or suggestions (including free/shareware programs) would be greatly appreciated.
    Thanks
    Gary
    Dual G5 2GHz, 2.5 GB RAM, 360 GB HDD   Mac OS X (10.4.2)  

    Thanks Lori for the reply.
    Unfortunately. my Epson 3170 Photo does not come with scan-to-fax software.
    I ended up creating a word doc and inserting the scans into it - on scan per page.
    Thanks for the suggestion though. It is greatly appreciated.
    Dual G5 2GHz, 2.5 GB RAM, 360 GB HDD   Mac OS X (10.4.2)  

  • How do I print multiple pictures on a single page in iPhoto?

    I'm trying to print different pictures on a single page using iPhoto.  How do I do it?

    You are probably going to get help by posting in the iPhoto forum. You can easily locate it by clicking on Apple Support Discussions on the top left of this page then navigating to the iPhoto forums.
    Roger

  • HT201320 How can i keep my email accounts separate on my ipad like they were b4 latest update?

    I just installed ios7 now all my incoming email comes in together- how can i keep them separate- i have 2 email accounts?

    Edit : your reply applied whilst I was typing this
    This is what I see (I've removed my account names) :
    And after tapping the Edit button :
    If you aren't getting that then you could try closing the Mail app via the multitasking bar - press the home button to go back to the iPad's homescreen ; double-click the home button to the multitasking list ; swipe or drag the Mail app from there up and off the top of the screen ; click the home button to close the bar. Then see what shows in the Mail app
    Message was edited by: King_Penguin

  • How can I sort multiple forms in Acrobat X (Mac)?

    Okay, I am working on a form that has over 300 (336 to be exact) forms in it, so dragging and dropping one at a time is really time consuming. I was wondering if there was a way to drag multiple forms (Shift Click or Cmd Click several, then arrange them in the forms field) in the Forms Field. I have tried everything I could think of and even did several searches. There doesn't seem to be a way to do this. Any help would be greatly appreciated.
    I'm working on Fillable Pathfinder Character Sheets, in case you were wondering.

    Or perhaps the text is jumbled. You can check whether the text is correct (and hence, searchable) by copy/pasting a bit of text out of the PDF and into Word (or whatever). If what comes out is nonsense, there is no hope of searching.

Maybe you are looking for

  • Retrieve data from a powerbook 150 and 170

    hi all, i have a powerbook 170 that starts up with the flashing-question-mark-disk icon and a powerbook 150 that does not start up at all. i have data on both that i would like to retrieve (old hypercard stacks; anybody know of a modern reader?). wha

  • Question,Get data from ALV to internal table

    Hi, friends I currently need to get the data displayed on ALV. But the original internal table is local. It means it has already been deleted. Do you know which method I shoud use? After that, I will move the records to other internal table. 3Q Mingh

  • Text Printing mismatch with Arabic Language

    Hi gurus, I have a requirement in printing the dunning form in different language based on the customer. Currently based on the language condition i m  calling the text element with right alignment. But i m observing a strange problem with the arabic

  • Twin Monitors plugged in to an Apple Mac Laptop

    I want to buy an iBook or a PowerBook notebook / laptop but before I do I want to know if I can do the following; 1. Plug two extra flat screen monitors via a splitter into the single monitor socket in the notebook / laptop. I know it can be done on

  • How do I make a quality recording of streaming music (and get into iTunes)?

    I'd like to make a recording of some streaming music.  I called Apple Care and the agent suggested using Quick Time.  Yes, I can make an audio recording, but it included a lot of background noise. (I could even hear myself tapping on my computer when