How does Numbers Transpose command (similar to Excel's TRANSPOSE command) work?

The Excel transpose can be used to convert a row of cell into a column of cells. Or vise versa. In excel there is the critical difference where you identify an Array by tpying Control+U then Command+Return. This provides the stepping through the cells when you copy the formular down (for column) or across (for row).
I can't figure how to do it without this (very opaque) Array facility which Excel has. Openning my Excel demo file results in an error and I get pasted values from last calculation, so Numbers obviously doesn't have feature compatibility with Excel here.
I actually just want the pasted values, so even a menu command that cuts a row of cells and pastes those cells into a column (or vise versa) would be fine, don't need a permanent formula to do it.
Bananas
Oranges
Mangoes
Apples
Pears
Peaches
Nectarines
Silver beet
Dates
Bananas
Bananas
Oranges
Oranges
Mangoes
Mangoes
Apples
Apples
Pears
Pears
Peaches
Peaches
Nectarines
Nectarines
Silver beet
Silver beet
Dates
Dates

I'd use OFFSET for this purpose. Works in either direction.
Original is a data table (all values entered directly)
Transposed contains a single Formula, entered in A1, then filled down* to row 4, and filled right to column D.
Transposed::A1:   =OFFSET(Original :: $A$1,COLUMN()-1,ROW()-1)
*Because Row 1 is a Header row, it's not possible to Fill down into the 'regular' rows below. You can do the Fill down and Fill right on a Plain table (no header rows or columns), then convert the top row and left columns to Header versions, or you can click on A1 to select it, Copy, then click on A2 and Paste. Fill down the rest of column A, then select the full column and fill right to column C.
Here'a a second example, used to convert a column oriented data entry table to table with data oriented in the one row = one record convention.
Same basic formula here. The IF(ISBLANK part is added to avoid zeros in cells corresponding to empty cells in the entry column.
=IF(ISBLANK(OFFSET(Aux::$A$1,COLUMN()-1,0)),"",OFFSET(Aux::$A$1,COLUMN()-1,0))
Regards,
Barry

Similar Messages

  • How does the Convert Command Work Under the Catalogue Manager?

    How does the Convert Command Work Under the Catalogue Manager?

    My suggestion would be that you download the pdf version of the organizer help file:
    http://helpx.adobe.com/pdf/elements-organizer_reference.pdf
    Start with page 57 for catalogs.
    I am sure you'll have a better understanding of backup/restore and converting when you understand what a catalog is.
    Please come back with your questions afterward .

  • How does the ping command get the IP address?

    I am running Windows 7 and when I do a ping command using a host name, the ping command works fine and returns the correct IPV4 address and is able to send and receive data using that address.
    On the other hand, if I write my own program and use either GetAddrInfo or GetAddrInfoEx. neither of them give me the result I expect. GetAddrInfo fails with a host not found error and GetAddrInfoEx gives me back a return code of zero, but the ai_addr field
    of the returned structure is garbage.
    Do any of you out there know how ping does it? Because if ping can do it, I should be able to also.
    Sid Schipper GA/RSG/Network Engineering Software Developer

    Never mind! The question came about because of my stupidity. GetAddrInfoEx was returning the correct IP address, but it was being returned as a double-byte character string and I was interpreting it as a single-byte character string, Oops!, my bad!, sorry
    to bother all of you and Thank you for your responses.
    Sid Schipper GA/RSG/Network Engineering Software Developer

  • How does one specify command line switches for a Helper Application in Mozilla Firefox?

    Greetings,
    I would like to have a certain batch file to be executed when downloading torrent files unfortunately the Select Helper Application dialog does not allow to add command line switches. I did find a workaround to achieve this. In the Select Helper Application dialog browse to the folder which contains the batch file, type the file name including the file extension of the batch file and click on Open.
    Though, this is not the way I would like to execute the batch file. I need to pass some additional command line switches to the command interpreter but I cannot seem to find a way how. Any suggestions or clarifications would be much appreciated.
    Thanks for your time,
    Joeri

    Hi Joeri,
    This is possibly slightly off topic for this forum as it relates to something more than the standard use of Firefox. Although I do not know the answer myself someone else may post later. Otherwise try somewhere else my suggestions are:
    *The mozillazine fora tend to discuss a wider range of subjects and technical details <br/> http://forums.mozillazine.org/index.php
    *Also it may be worth asking on the Add-on forum <br/> https://forums.mozilla.org/addons/
    *Note a general information kb relating to downloads is
    ** http://kb.mozillazine.org/File_types_and_download_actions
    ** and for anyone with simpler questions [[Unable to download or save files]]
    If you do solve this I hope you post back with the answer and a link to the relevant information.
    Good luck with finding a solution, John

  • Newbi Question:  How does one create a similar page to this using APEX 3.1?

    Hi,
    I am trying to create a help document with screen shoots inside our APEX web application and I am hamstrung by the type of Region and Item objects available to me. When I tried to create HTML region I was limited to how much html characters I can put in the source. When I look into the item menu nothing seems to allow me to stick in large chunk of HTML code either.
    A little searching on this forum and I came across this page: http://www.oracle.com/technology/obe/apex/apex31nf/apex31blob.htm#t
    It is exactly the type of page I want to create with lots of text and screen shots and I presume that it is built within APEX? So my questions is: How did they do this? Did they use tools available within APEX or some external tool? Was all this outputted using BLOB and Htp("") and PL/SQL? I am trying hard to avoid having to do that.
    I was also unable to stick in an in image into my page using instruction from http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10499/ui.htm#CBBHGJCH which left me pretty frustrated. (external amazon gif worked).
    Thanks for any help,
    Wayne

    Wayne,
    I am glad that you got images to display. I am not sure what kind of html report you want to display, there is a limit of number of characters in a region its 32767 characters, so if you want to display large html file you can create html region with no template and limit each region to 30,000 characters and create as many region as you want.
    If you want to display data from any table ( as per the first url) you can create SQL reports, something like
    select ename
         , deptno
         , sal
         , case
              when ename = 'SCOTT' then '<img src="#WORKSPACE_IMAGES#us_flag.gif" alt="Image Title">'
              when ename = 'SMITH'  then '<img src="#WORKSPACE_IMAGES#chants.gif" alt="Image Title">'
              when ename = 'MARTIN' then '<img src="#WORKSPACE_IMAGES#cloche.gif" alt="Image Title">'
              when ename = 'MILLER' then '<img src="#WORKSPACE_IMAGES#chandelles.gif" alt="Image Title">'
              when ename = 'JONES' then  '<img src="#WORKSPACE_IMAGES#shoe.gif" alt="Image Title">'
              else '<img src="#WORKSPACE_IMAGES#hallo.gif" alt="Image Title">'
         end  image
    from empThanks,
    Manish

  • Does the Undo command work in Finder anymore (Mountain Lion)?

    I used to be able to Undo an accidental file move, etc. with a quick Command-Z. Not anymore. Is there a workaround, or some other option I am not aware of? Thanks.

    It's a long shot, but here goes. My previous employer used a different email login scheme than the default Outlook suggestion. They used three letters followed by 4 numbers, XXXNNNN, instead of the first part of the email address [email protected] So, if you setup Oulook with the default settings, without correcting the login entry, it would not find the server.
    Keep in mind that many employers specifically try to block the use of home computers with their exchange mail servers for security reasons. Your employer's IT group also have the option with Exchange server of remotely removing the email from your cell phone.

  • Does the TJ command work with Type3 fonts?

    I'm not sure that the text showing TJ works with Type3 fonts.
    Attached is a complete PDF file that illustractes the problem. See
    how the A characters position are affected by the TJ command when
    using the Type1 fonts but not the Type3. Is this a known issue? Is there a solution?
    %PDF-1.4
    %âãÏÓ
    1 0 obj
    <<
    /Type /Catalog
    /Pages 2 0 R
    >>
    endobj
    2 0 obj
    <<
    /Type /Pages
    /Kids
    3 0 R
    /Count 1
    >>
    endobj
    3 0 obj
    <<
    /Type /Page
    /Parent 2 0 R
    /MediaBox[0 0 595.3 841.9]
    /Contents 4 0 R
    /Resources 5 0 R
    >>
    endobj
    5 0 obj
    <<
    /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
    /Font
    <<
    /F0 6 0 R
    /F1 11 0 R
    >>
    >>
    endobj
    6 0 obj
    <<
    /Type /Font
    /Subtype /Type3
    /FirstChar 65
    /LastChar 65
    /Widths[93]
    /FontMatrix[1 0 0 1 0 0]
    /FontBBox[0 0 97 107]
    /Encoding 7 0 R
    /CharProcs 8 0 R
    /Resources
    <<
    /XObject
    <<
    /Image65 10 0 R
    >>
    >>
    >>
    endobj
    7 0 obj
    <<
    /Type /Encoding
    /Differences[65 /softA]
    >>
    endobj
    8 0 obj
    <<
    /softA 9 0 R
    >>
    endobj
    9 0 obj
    << /Length 56 >>
    stream
    93 0 0 0 93 107 d1
    q
    77 0 0 107 0 0 cm
    /Image65 Do
    Q
    endstream
    endobj
    10 0 obj
    <<
    /Type /XObject
    /Subtype /Image
    /Width 23
    /Height 32
    /BitsPerComponent 1
    /ImageMask true
    /Filter /FlateDecode
    /Length 63
    >>
    stream
    x^ûÿhþÿþ1Àÿ?õ dQÿÃÂjì?ÔÈÐ?ùütð?ûajoþßDìÿ À @e
    endstream
    endobj
    11 0 obj
    <<
    /Type /Font
    /Subtype /Type1
    /BaseFont /Times-Roman
    >>
    endobj
    4 0 obj
    << /Length 238 >>
    stream
    q
    0.072 0 0 0.072 0 0 cm
    BT
    /F0 1 Tf
    1000 2100 Td
    [(AAAA)]TJ
    ET
    BT
    /F0 1 Tf
    1000 2000 Td
    [(A)100(A)100(A)100(A)]TJ
    ET
    BT
    /F1 107 Tf
    2000 2100 Td
    [(AAAA)]TJ
    ET
    BT
    /F1 107 Tf
    2000 2000 Td
    [(A)100(A)100(A)100(A)]TJ
    ET
    Q
    endstream
    endobj
    xref
    0 12
    0000000000 65535 f
    0000000019 00000 n
    0000000078 00000 n
    0000000156 00000 n
    0000001215 00000 n
    0000000279 00000 n
    0000000399 00000 n
    0000000656 00000 n
    0000000727 00000 n
    0000000768 00000 n
    0000000882 00000 n
    0000001130 00000 n
    trailer
    <<
    /Size 12
    /Root 1 0 R
    >>
    startxref
    1513
    %%EOF

    No Mac available ATM. Will do this for you sometime over the
    next 3 days.

  • Does the setpref command work with Mac Shockwave 11 player?

    Hi,
    I have an existing application that makes use of setPref and
    getPref commands to store the user state.
    Recently, we have had users reporting problems and I have now
    narrowed the scope of the problem down to Mac users who have the
    latest Shockwave 11 player. My testing has shown that these systems
    seem to completely ignore calls to setPref() - that is, no txt file
    is ever written to the user's Prefs folder....
    Can someone please confirm that this functionality is not
    broken on Mac Shockwave 11 machines?
    I have been using the following page as a convenient test:
    http://www.director-online.com/buildArticle.php?id=329
    At the bottom is a small Shockwave movie that uses
    setPref/getPref to save a 'bookmark'. Can Mac users please reply to
    this thread and confirm that this is working for them?
    Any other suggestions would also be appreciated...
    Thanks,
    Ben.

    No Mac available ATM. Will do this for you sometime over the
    next 3 days.

  • How does lock/unlock/delete on my site host site collection work?

    Hi All,
    I need to lock/unlock/delete my site host site collection programmatically. Does lock/unlock/delete on my site host site collection  lock/unlock/delete my sites of users?
    Thanks,
    Moohak

    Hi All,
    I need to lock/unlock/delete my site host site collection programmatically. Does lock/unlock/delete on my site host site collection  lock/unlock/delete my sites of users?
    Thanks,
    Moohak

  • How does changing a template or theme on a live website work ..

    well i have a task at hand ... to develope a website that has this feature of changing themes or templates ... can anyone help me with this ....

    Hi Adam,
    No, there is nothing like variables get picked on file save or at intervals. The issue looks odd, but I could not reproduce it. Could it be happening in any specific context? Or does it happen in a blank file with only those 2 lines also?
    Thanks,
    Dipanwita
    Adobe ColdFusion Builder Team

  • How does the value for "Escalated incidents" in the KPI report work?

    Hello,
    I've been running the standard KPI report in SCSM for our support groups and noticed that the value of "Number of incidents" in some cases are lower than the value for "Escalated incidents". How could this happen? Isn't "Number of
    incidents" the total and "Escalated incidents" just an indication of how many of the total that have been escalated? Do I need to add them together to get the total?
    It could be noted that we tick the check-box in the incident form manually without any connection to SLO.
    Am I missing something? Any suggestions would be appreciated. :)
    Best regards,
    Marcus

    >If you can't deactivate ahead of time, you can contact Adobe Customer Care to help you.  But like I said, you can install on up to 2 devices.  I think if you try to install on a 3rd device, your other 2 get deactivated automatically.  So even if you have to format C, you'll still be able to get up and running pretty quickly.
    Great, thank you.
    >Perpetual License means "yours to use for as long as your operating system can run it."   CS6 is almost 3 years old and no longer being updated.  It is what it is.  Presently, 4 versions back from the currently available Creative Cloud version.
    Too bad they went to a dumb subscription based model that doesn't allow you to purchase a full license outright.  I don't want to pay $30 a month,  I'd rather pay a lump sum and be done with it.

  • How the PURGE INDEX command works

    Hi all,<br><br>
    PURGE INDEX command purges the specified index from the recyclebin.<br>
    My question is: I noticed that the dropped index doesn't appear in the recyclebin, so from where it could be purged?<br><br>
    SQL> CREATE INDEX Z_IND ON Z (Z);
    Index created.
    SQL> DROP INDEX   Z_IND ;
    Index dropped.
    SQL> SELECT OBJECT_NAME    , ORIGINAL_NAME   FROM USER_RECYCLEBIN ;
    OBJECT_NAME                    ORIGINAL_NAME
    BIN$TNgWa0sgR8qFY7JXGVT3yQ==$0 T              <<-- the dropped index doesn't appear here
    SQL>CREATE INDEX Z_IND ON Z (Z);
    Index created.
    SQL> PURGE INDEX Z_IND ;
    PURGE INDEX Z_IND
    ERROR at line 1:
    ORA-38307: object not in RECYCLE BIN
    SQL> DROP INDEX Z_IND  PURGE ;
    DROP INDEX Z_IND  PURGE
    ERROR at line 1:
    ORA-00933: SQL command not properly ended
    SQL> DROP INDEX Z_IND;
    Index dropped.

    I found out that the index doesn't go to the recyclebin when it is dropped. It goes there, when its underlying table is dropped.
    SQL> CREATE TABLE Z ( Z NUMBER );
    Table created.
    SQL> CREATE INDEX Z_IND ON Z(Z);
    Index created.
    SQL> DROP TABLE Z ;
    Table dropped.
    SQL> SELECT ORIGINAL_NAME FROM RECYCLEBIN ;
    ORIGINAL_NAME
    Z
    Z_IND

  • How does the Error Row Definition and Error Message Lookup setup work?

    Suppose I use web ADI to load data to PA_TRANSACTION_INTERFACE_ALL (This is Oracle standard Interface table for Projects)
    I call a Importer (The Importer is called post upload of data to above Interface Table). The Importer will update the Interface table columns (TRANSACTION_STATUS_CODE) and (TRANSACTION_REJECTION_CODE) with values based on the clearing all validations. If validation fails, the column, TRANSACTION_STATUS_CODE is updated with value 'R' and TRANSACTION_REJECTION_CODE has the error code. This error code is stored in the Lookup, with Lookup Type = 'TRANSACTION REJECTION REASON'
    I define the Error Row Definition as follows -
    select * from PA_TRANSACTION_INTERFACE_ALL where TRANSACTION_STATUS_CODE = 'R' and BATCH_NAME = $param$.batchname (BATCH_NAME is populated in the Web ADI Template)
    I define the Error Message Lookup as -
    select meaning from apps.fnd_lookup_values where lookup_type ='TRANSACTION REJECTION REASON'
    and language='US' and lookup_code = $param$.TRANSACTION_REJECTION_CODE
    I have defined the , Document Row : Interface Attribute Mapping - with the column, ORIG_TRANSACTION_REFERENCE (THe column with the Unique value for a row and links the Excel row with the Interface table)
    I feel my setups are fine. Still why the Error -
    An error has occurred while running an API import. The ERRORED_ROWS step 275:ER_501996, parameter number 1 must contain the value BIND in attribute 1.

    Duplicate post -- https://community.oracle.com/thread/2615675

  • How does one give feedback if the page/button won't work???

    I tried to give feedback and the page/button doesn't seem to work. I checked my cookies and they seem to be ok. I also refreshed the page a number of times.

    finitarry, <br/>
    Feedback is public, and can be viewed at http://input.mozilla.com/ . Pretty cool eh? :) Almost all of Mozilla work is public. It's one of the rules of Mozilla (which is also non-profit).
    If you're having a issues and you're not the original poster of this thread, it's best to start a separate thread using https://support.mozilla.com/en-US/questions/new

  • How does the codepage of the job server and the datastore work together?

    <p>In Data Integrator, a datastore can be used as a source or a target of an ETL transaction (called dataflows). The dataflow is executed by a single job server. During reading or loading, Data Integrator will "transcode" from the datastore codepage to the codepage of the job server. As you can imagine, you will need to be careful when selecting the codepage of the job server, as it will need to be able to represent all characters you are trying to read/load. In other words, the codepage of the job server MUST be a SUPERset of all codepages used in all datastores which that job server may encounter.</p><p>If Great Big Company Inc. selected MS1252 (which supports many western languages including English) for the job server, Great Big Company Inc. would potentially lose characters coming in from the Korean customer database. That&#39;s why it is recommended that you choose UTF-8 for the job server when processing a mix of multi-byte / single-byte data. UTF-8 will be able to map to all of the characters used in both source databases. </p><p>&#160;</p>

    It is slightly difficult to post the code as it is a huge project.  I think the issue is connected with the actual 3D control, as when I copy it and paste it into another blank vi, it shows the same behavior.  I have tried to attach a vi where I copied the indicator from my program and put some dummy data in.  I keep getting an error 'The contents of teh attachment doesn't match its file type' . I guess I need help attaching the vi.
    When I do, the following wll be true...
    I've also put a few of the property nodes into the vi to see what impact they have.
    Basically, run the vi and look at the data.  On my screen the points look a sort of muddy brown color.  With the 'fast draw' option selected, when I click and drag on the graph, the labelling disappears and the points change color to reflect the values seen on the color pallete indicator.  Changing the colors in the Scatter Color Ramp control has the expected effect of chaging the plot colors, but only in the fast draw case.  I want the colors to be there all the time, but cannot find the magic trick to set the pallette for the points when not in 'fast draw' mode, i.e. clicked and held.

Maybe you are looking for

  • How to get the previous state of my data after issuing coomit method

    How to get the previous state of some date after issuing commit method in entity bean (It should not use any offline storage )

  • Programs will not launch.

    Crossover and mulab are two programs that will not launch on moutain lion. Anybody know why? I allow programs for anywhwere, so it´s not that.

  • Workflow triggering problems

    Hi all, I have a puchase order release workflow ,and have activated the triggering in tcode pftc,but the problem is ,every time I create a purchase order the workflow triggering gets deactivated and have to manually activate it after each Purchase Or

  • Upgrade 4.6 to 4.7  Missing GL account  error in 4.7  its not with 4.6

    Hi We are doing  upgradation project  4.6  to 4.7.. Here in staging server  while saving sales order we are getting incompletion log Due to missing Gl account .. Environment Analysi  Account determination kfoi00  missing Gl account for Condition t

  • Networking MIDI signal problem (For GB3 on Intel iMac)

    I've run in to the problem that m-audio has yet to put out drivers for my USB MIDI keyboard (Radium 61). As a work around I figured that I could set up a network connection from my iBook. So I've got the Radium set up on the iBook, tested and working