How can I correlate two columns that belong to different worksheets?

I am using beginner user of Numbers 3.2. I also thought of copying the columns of interest into a single sheet but don't know how to do so.
Advanced thanks,
Alex

Hi alexander,
If you are looking for a column that will update as your reference column changes, try this:
In the first cell of your destination column type "=" (without the quotes)
Navigate to your reference column and click the header of that column. Click the check in the formula editor. You are back at your destination cell.
Copy.
Click the destination column header and paste.
quinn

Similar Messages

  • How can I have two VI that works together?

    How can I mix two VI that work together ? Does it work with Flat Sequence Structure or something's?

    I've always wondered about that bracket-thingy, but I've been able to get along without it, so I don't worry about it any more.
    Why would you want to try to program a doubly-charged carbon ion (C++), anyway? It's just going to find an oxygen ion or aromatic ring to react with, no matter what you do. You're sure not going to steer it towards another cation without going to Fermilab or CERN (Yes, I understand they use LabVIEW there).
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • How can I get two column selection list in my html form

    I required to have two column selection list in my jsp page to show name and description of a product. How can i achieve this functionality or is there any other alternative to do so.

    If i understand correctly: you can't actually create two columns in a list because it can only hold one value. The only way to achieve what you want is by concatenating the two values you want to display and put this as the value of the listbox.

  • How can I sort two columns?

    I've got two columns of text (names of people, actually) in a Numbers spreadsheet. I've selected all the cells and made sure they are "text" format. I cannot figure out how to sort (alphabetically) the two columns independent of one another.
    I just want two columns of names in alphabetical order. How do I do it? Every time I select one column and sort by ascending it affects the column(s) next to it.

    Not sure I totally understand the actual question. But let me give it a shot...
    Column A = Last Name, Column B = First Name. You want to sort this list of names by Last Name, then by First Name so John Smith shows up below Alex Smith on your list. Typically you would have MULTIPLE columns of data to go along with the names; Phone, Address, City, State, Zip, etc. Right? So if you Sort only ONE column (and ONLY that column, you end up with John Smith having the wrong address, etc. etc. SO, most Spreadsheets allow you to sort multiple columns at the same time, but by only one Column Title at a time. This keeps the rest of the data in the Record in the right place. Thus, you sort Column A (Last Name) in Asending order. Now all the LAST Names are alphabetical. Next, you sort Column B (First Name) in Asending order. Now the list should show up with the last Names in the correct order, AND the First Names also - BUT all the other info (address, City, State, etc) is ALSO still attached to the right records. Clear as MUD?!
    P.S. This will ONLY work when your Title Box for each Column has a SINGLE Line of text:
    Like THIS: Last Name
    NOT THIS: Last
    Name
    The Spreadsheet will leave the TOP ROW (Titles) alone, and sort the Rows beneath the Title Boxes.
    Good luck...

  • How can I make two columns in DropDownList

    like this
    I remember that the solution met.
    Except alignment spaces in a text string.

    from the Documentation
    Creating multi-column lists
    In list controls (ListBox, DropDownList, TreeView), a set of ListItem objects represents the individual
    choices in the list. Each choice can be labeled with a localizable string, an image, or both, as specified by
    the text and image properties of the ListItem (see “Displaying images” on page 72).
    You can define a ListBox to have multiple columns, by specifying the numberOfColumns creation
    parameter. By default, the number of columns is 1. If you specify multiple columns, you can also use the
    creation parameters to specify whether headers are shown, and the header text for each column.
    If you specify more than one column, each ListItem object that you add to the box specifies one selectable
    row. The text and image of the ListItem object specifies the label in the first column, and the subitems
    property specifies labels that appear in that row for the remaining columns.
    The subitems value is an array, whose length is one less than the number of columns. That is, the first
    member, ListItem.subitems[0], specifies the label in the second column. Each member specifies one
    label, as a JavaScript object with two properties:
    { text : displayString , image : imageFileReference }
    For example, the following fragment defines a list box with two columns, and specifies the labels in each
    column for the two choices:
    // create list box with two titled columns
    var list = dlg.add ('ListBox', [0, 0, 150, 75], 'asd',
    {numberOfColumns: 2, showHeaders: true,
    columnTitles: ['First Name', 'Last Name']});
    // add an item for the first row, with the label value for the first column
    var item1 = list.add ('item', 'John');
    // add the label value for the second column in that row.
    item1.subItems[0].text = 'Doe';
    // add an item for the second row, with the text for the first column label
    var item2 = list.add ('item', 'Jane');
    // add the label text and image for the second column in the second row
    item2.subItems[0].text = 'Doe';
    item2.subItems[0].image = File ("~/Desktop/Step1.png");

  • How can i update two block that they data source is same table .

    i design user interface .
    there are tow block ,they datasource is same table but differe field .
    when i input a record ,i must input tow block ,then commit . for this .the total record is save in database .
    how can i write those code .

    Trying to hide your identity?
    Why do you have two separate blocks here if there are different fields in each. The feilds in a block can be spread over multiple canvases / windows so layout is not a reason.
    If you are in a situation where two blocks are displaying the same record for update them you'll have the potential of data consistancy problems as well.
    So explain what you're trying to do with the two separate blocks and maybe we can come up with a better way to implement it.

  • How can i multiply two column in collection .

    hi
    how can i use onBlur="javascript:amtItems()" in collection .
    <script>
    function amtItems(){
    function getVal(item){
    if($x(item).value != "")
    return parseFloat($x(item).value);
    else
    return 0;
    $x('c010').value = getVal('c008') * getVal('c009');
    </script>
    Manoj Kaushik

    Is this related to a tabular form? You can get some help here:
    http://apex.oracle.com/pls/otn/f?p=31517:213
    Ths syntax of your javascript would be:
    $x('f03_0001').value = getVal('f03_0002') * getVal('f03_0003');
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • How can I create 2 columns that go over several pages? f.e. Contract with 2 languages.

    I need to create 2 columns over several pages.
    Target is a bilingual german/english contract.
    All paragraphs side by side. Left side german right side english.
    My problem is that if I use standard columns the text flows on the next column of the same page instead of same clumn on next page.
    Example:
    I do not like
    EN     EN
    EN     EN
    EN     EN
    EN     EN
    I need.
    EN     GER
    EN     GER
    EN
    EN
    EN
    EN
    EN
    EN
    Can anyone help. Do I have to back to MicrosoftWord.
    Please not. Thank you.

    HI,
    You could use two sets of linked text boxes, as I've done here.
    The text layer of this document contains only a series of Page Breaks, necessary to create the pages on which the Text boxes are placed. The illustration shows parts of pages 1 and 2.
    Create the series of text boxes that make up the left column, then Select All and Duplicate to create the second set.
    I found alignment a bit of a hassle, and that alone might be enough to convince you to use MS Word (or the word processing module of one of the free Office applications) for this task.
    You might also use the Provide Pages Feedback menu item in the Pages menu* to make a feature request to Apple.
    Regards,
    Barry
    * Got it right this time, fruhulda!

  • How can I vertically align items that are in different regions

    Hello,
    I am a novice developer in APEX. I am creating a page which has 4 regions on it. Right now it looks like the following:
    ----region 1----------------------
    label: field label4: field
    -----region 2--- region 3--
    label: field label45: field
    -----region 4---------------------
    label:field [one-item-worth-of-space. next item aligned to right of item below]long_label: field
    label: field label: field
    I am trying to vertically align the items in these regions, in such a way that all the colons are vertically aligned.
    I am having a particular alignment problem in region 4, column 2 (item are bold). Both label:field, and long_label:field in region 4 have the same vertical/horizontal alignment option as the rest of the region (right for label, left for field). For some reason, there is one item space between these two items. This space is removed if I switch the two fields.
    I would really appreciate any help trying to understand
    - how to remove the one-item-equivalent space between two items in region 4
    - how to vertically align all these fields in different regions on one page.
    I tried to create the original scenario in bold, but the post would not allow space formatting. I apologise if it is difficult to understand
    Thank you in advance for your time.
    RHaq

    This is not the APEX forum. Post your question in this forum:
    Oracle Application Express (APEX)

  • How can i use two iPads to play a different AU-Instrument for each Pad at the same time via WLAN?

    We have two iPads connected to the MacBook with two different Midi-Sessions. Now we want to connect the every Session to a single AU-Instrument to record live but don´t get it right. In Cubase we just had to choose the Sessions as Midi-Input.
    (Sorry for bad englisch )
    cheers

    Your second post differs form your first, in the first post you said "single AU instrument", in this last post you said "separate synths".  I'll address the second post.
    It's a bit more difficult in Logic than Cubase which has an updated more modern MIDI system.
    The iPad MIDI software will need to transmit on separate MIDI channels for each iPad.
    example:
    iPad #1 MIDI channel 1
    iPad #2 MIDI channel 2 ...etc, doesn't matter which channels as long as they're separate.
    Boot Logic:
    Go to Settings/Recording and select  "Auto Demix by Channel if Multitrack Recording"
    Now setup your AU tracks, select separate channels in the inspector, the channels must match the transmit channels on the iPod.
    You used to have to record enable the tracks, I don't believe that is necessary now.

  • OBIEE-can we link two dimension tables belonging to different fact tables?

    Hi ,
    I have just started with OBIEE concepts....need your views on this issue:
    Fact 1 -> Dim 1, Dim2,Dim3 and so on..
    Fact 2 -> Dim a, Dim b,Dimc and so on...
    If I link Dim1 and Dim a with a valid key ,would that distort the star schemas to slowflake in BMM layer?
    Thanks in advance!
    Neha

    I don't see this that would make it snowflake more like what I think as conforming dimensions. You need to make sure the grain of the measures is at what level , the they are same grain then you should be good however if they are different then you would start seeing null values.
    Fact Measures use the same, conformed dimensions like Dim1 and Dim a if you trying to generate from multiple facts, the BI server was able to automatically stitch them together into a single result set. If they came from the same fact table that's easy as its only one single table, but if you are pulling from different fact tables, the conformed dimensions would allow them to be stitched into the same report
    Conformance means that these sources can be mapped to a common structure – the same levels – and also the same data members.
    Mark if helps.
    Thanks,
    SVS

  • How can I setup two ipods to automatically sync different songs?

    My son and I now both have Ipods. Can I set it up so my Ipod will auto sync my songs and his, his songs? Please step by step me...i know nothing Thanks

    Have a look at this article in the Apple Knowledge Base and let us know if it brings you any combination of joy and/or satisfaction.

  • Two apple I.D., one with the .me email address I want, how can I delete it so that I can use that .me address on my other account?

    I have two apple I.D., one with the .me email address I want, how can I delete it so that I can use that .me address on my other account
    Or is it possible to transfer the purchases (apps) to my new .me account so that I can re-download them in the future without having to switch accounts?

    crazyshark wrote:
    I have two apple I.D., one with the .me email address I want, how can I delete it so that I can use that .me address on my other account
    Or is it possible to transfer the purchases (apps) to my new .me account so that I can re-download them in the future without having to switch accounts?
    You can't do this, and you can't transfer purchases between accounts. There is no conflict about using one ID for iTunes, iTunes in the Cloud and iTunes Match (the ID you've been using for iTunes) and using the other ID for iCloud.

  • How can I copy file/folders from and to hard drives? How can I have two or more windows of explorer so that I can drag and drop from one hard drive to another?

    Hi,
    I am a new customer (purchased last week) of MacBookPro (latest) and its my first ever Apple laptop.
    I am almost lost to find the operating tools.
    1. How can I copy files from hard drive to computer and vis-a-versa?
    2. Only can browse one but how can I have two or more browses at the same time like in MS windows?
    3. No right click works on track pad?
    4. Is there application/ program compatible to MS office? If so how much and how can I purchase?
    5. Is there AutoCAD program that is compatible to MS Window AutoCAD? and if yes how much and how can I purchase?
    I will very much appreciate if you could email me the with the solution/answers please.
    Regards,
    Khagendra Limbu

    1) For some reason this happens once in a while with FAT32 enabled external harddrives. I have no idea why this happens but it most easily solved by reformatting the drive. First make sure you've copied everything from the external drive to your internal harddrive. You've done this earlier so I assume you know how to do this.
    Now the reformatting part. Open Finder and go to Applications. Look for the folder called "Utilities". Click on it. In it you find a program called "Disk Utility". Click on it. Now look for the external drive. You probably see two entries for the disk. Click on the one that contains the name of the drive NOT the one that describes the disk (Like for example 320.07 GB Samsung S2 Portable Media).
    Now you see four tabs in the righthand part of the window. They're called "First Aid", "Erase", "RAID" and "Restore". Click on "Erase". This opens the tab with (amongst others) a dropdownbox (Format) and a textbox (Name) . In the dropdownbox select "Mac OS Extended (Journaled). Take note! This selection disables usage of the drive with Windows PC's. If your goal is to share the drive with Windows PC's select the MS-DOS FAT option.
    Enter a label for the drive in the textbox Name. Now click on the button "Erase". This will format the drive.
    Now when it's done you can copy back all the items you've copied to your internal harddrive earlier.
    2) Opening two windows like Explorer on Windows is opening two Finder windows on the Mac. Simply click on the background. In the menubar you items like 'Finder", "File", "Edit", "View", et cetera. Click on "File" and "New Finder Window". Do this two times. Alternatively you can click on the background and press CMD-N two times.
    3) You can right click on the trackpad. This however depends on if you've enabled the feature in System Preferences. In the topmenubar click on the Apple icon and select "System Preferences". Now look for Trackpad in Hardware. Click on it. You see three tabs with the names "Point & Click", "Scroll & Zoom" and "More Gestures". Select "Point & Click" and look for "Secondary Click'. Make sure it is checked and make sure it has written "Click or tap with two fingers" written beneath "Secondary Click". When you're done exit System Preferences. Now select the background and tap with two fingers on the trackpad. This should open the contextuel menu with options like "New Folder", "Get Info" et cetera.

  • How can I delete two .jpg files from my desktop that refuse to be deleted?

    How can I delete two .jpg files from my desktop that refuse to be deleted?

    The two icons refused to be moved to the garbage. The good part in all this is that ater I turned off the computer at night and turned it back on the next morning they were gone!
    Thanks.

Maybe you are looking for

  • Max. no. of rows in excel

    <p>Hello,<br><br>I have a question about the maximum number of rows that an excelsheet can display. I have a drill through report which retrivesmore than 65000 records and I read that excel can display only 65Krows. Is there any setting which can be

  • Sound in a Side Scrolling Game

    I'm making a Marioish game. I want a sound to be played at specific plot events during the game. I am planning on using JMF. As of right now I'm planning on having a linkedlist of all the Players that are currently playing. That way I don't have to h

  • How to compress my file

    Hi, I am working on a wedding video that I shot with two cameras. I have edited it down and the final project was about 2 hours and 10 minutes. I used compressor and converted it to a mpeg2 which reduced the file to 1.9 gigs. However, I have come to

  • I am having trouble opening .nef raw files from a nikon d800 in elements 9.

    I am having trouble opening .nef raw files from a nikon d800 in elements 9. I have tried to update ACR to the latest version but can not tell if this has been successful I just get the message "wrong type of file"

  • Re: Question

    I have a question and can not figure out where to post for someone to help or answer.  So I just put it here.  Has anyone else been having issues with their iPhone4 not receiving calls or text messages at times.  Today is the second time this has hap