Can I link to a table in another Numbers file?

I have searched through the documentation and on support and cannot find a way that I can reference a cell belonging to another Numbers file. I essentially want to use one Numbers file to store a very large amount of data and have separate smaller files access that data. So far I have only been able to link to cells on a different sheet in the SAME Numbers document.
iWork Pages allows me to link to a Numbers docuement table so I was hoping to find a similar capability within Numbers itself.
Karen

That feature is unavailable. A search of this forum on the word "link" will provide numerous questions on the same subject. It is obviously a highly desired feature.

Similar Messages

  • Need an applecript to copy filtered cells from a Numbers table to another Numbers file

    Hi,
    I would like to be able to build a new table in an existing file based on a filtered selection.
    My file covers the whole year and have many more columns but let's make a short example:
    Starting table: Table 1 Sheet 1 file 1
    Date
    Quantity
    Price
    Action
    Port
    10/3/2014
    1050
    100
    IN
    Venice
    11/3/2014
    35
    104
    CES
    Venice
    16/3/2014
    2045
    90
    IN
    Barcelona
    21/3/2014
    545
    9
    CUS
    Barcelona
    25/3/2014
    50
    123
    CES
    Venice
    28/3/2014
    50
    21
    CUS
    Rome
    I would like to have on a separte file(table 1 Sheet 3 File 2) a table like this (filtered by Action: IN + CUS and Port: Venice + Barcelona)
    Date
    Quantity
    Price
    Action
    Port
    10/3/2014
    1050
    100
    IN
    Venice
    16/3/2014
    2045
    90
    IN
    Barcelona
    21/3/2014
    545
    9
    CUS
    Barcelona
    Any help?

    Although I would have preferred to have a script beacuse the data origin file - let's call it STORAGE - is already quite heavy and I would like to use the filtered data on a separate file - let's call it MANAGEMENT - for further analysis and integration with other data coming from other STORAGE files and from other company areas.
    Hi Paolo,
    Below is a script that should do what you want. (Tested in Numbers 3.2). Copy into AppleScript Editor, set up the Numbers documents as indicated (or change the script to match your document setup), and click the green triangle 'Run' button.
    It assumes you have both the source document ("Storage.numbers") and target document ("Management.numbers") open and that you have already set up the target table with 1 header row.  You can change your filter columns and values and filter logic where indicated.
    For simplicity (and also to avoid apparent Numbers bugs in removing rows via AppleScript) I assumed the user will manually check to make sure that the target table does not contain too many rows. It needs at least 2 rows to work properly as the results are inserted starting in cell A2 (which can be changed as needed).
    SG
    --filters a table and passes the results to an existing table in the same or different document
    --set filter column and values to filter for here:
    property filter1 : {colNum:4, filterFor:{"CUS", "IN"}}
    property filter2 : {colNum:5, filterFor:{"Barcelona", "Venice"}}
    --set properties of source's and target's document, sheet, table here:
    property source : {d:"Storage.numbers", s:"Sheet 1", t:"Table 1"}
    property target : {d:"Management.numbers", s:"Sheet 1", t:"Table 1"}
    tell application "Numbers"
              activate
              set filteredList to {}
               --load source table's values into a list of lists
              try
                        set valuesList to value of document (source's d as string)'s ¬
                                  sheet (source's s as string)'s table (source's t as string)'s ¬
                                 rows's cells
              on error
                        display dialog "Having trouble. Does your source document, sheet, and table exist?"
              end try
               --create filtered list of lists
              tell valuesList to repeat with anItem in items
                        --if needed, logic can be changed to 'not in', etc.
                        set satisfiesFilter1 to anItem's item (filter1's colNum) is in filter1's filterFor
                        set satisfiesFilter2 to anItem's item (filter2's colNum) is in filter2's filterFor
                        --if needed, logic can be changed here to 'or', etc.
                        if satisfiesFilter1 and satisfiesFilter2 then ¬
                                  copy anItem's items to end of filteredList
              end repeat
              if (count filteredList) = 0 then display dialog "No rows meet your criteria" buttons "Cancel"
               --load values into target table (in this or another document, as specified in properties above)
              try
                        tell document (target's d as string)'s sheet (target's s as string)'s ¬
                                  table (target's t as string)
                                 --load the values into the cells starting at cell A2:
                                  set pasteStr to ""
                                  set {oTid, AppleScript's text item delimiters} to {AppleScript's text item delimiters, tab}
                                  repeat with anItem in filteredList's items
                                            set pasteStr to (pasteStr & anItem as string) & return
                                  end repeat
                                  set the clipboard to pasteStr
                                  set the selection range to cell "A2" --assumes 1 header row
                                  tell application "System Events" to keystroke "v" using {option down, shift down, command down}
                        end tell
              on error
                        display dialog "Having trouble. Does your target (destination) document, sheet, and table exist?"
              end try
    end tell
    --end of script

  • Referencing tables in another Numbers '09 file

    Is there a way to reference table in another Numbers file. For example using the VLOOKUP formula to bring data from another Numbers file into my current table. I was wondering if you have to have that table in the same Numbers file. My Tables are in the thousands and and have 3 alphabets of columns and it would be difficult to fit 2 of those onto my screen in the same Numbers file.

    Not from another file, only from within the same document. Numbers does not support external links to other spreadsheet files.

  • How can I link my daqmx code to another daq assistant to hear my audio output?

    Hi,
    I got a burning question about my school project. I need to use labview and my NI-mydaq to test the difference between
    various samples rates and bit depths.
    I linked an mp3 file to the AUDIO IN of my NI-mydaq and created a way to be able of switching sample rate while running my program.
    Now I would like to link my program inside the NI-mydaq to my AUDIO OUT...
    So...  I generated daqmx code out of an input daq assistant, how can I link my daqmx code to another daq assistant to hear my audio output?

    Hello Fontys_Student...,
    I am not sure I properly understand your question.
    You want to, first, acquire a signal from the AUDIO IN input, second, do some processing on the acquired signal and, third, generate this processed signal at the AUDIO OUT, right? What is the part causing some troubles?
    If you already have the signal acquired and processed, you can simply wire this processed signal to the "data" input of a second DAQ Assistant, right?
    Did you already have a look at the myDAQ User Guide (http://www.ni.com/pdf/manuals/373060e.pdf)? On page 32-35, there is an example showing what you need I suppose. 
    Cédric | NI Belgium

  • How can I create an anchor link, from one table to another?

    I want to make an .html web page with two tables, side by side. In the left table I want to put a list of names. In the right table I want to have text anchored at the top of the right table (linked anchor to the names in the left table) so that when I click on a name from the list in the left table the text associated with that name will appear at the top of the table on the right? In the right table, I want to be able to scroll up and down to read the text in the right table. In the left table I want the list to remain near the top of the page while I'm scrolling up and down in the right table. I want the list on the left always in view and stationary while I'm scrolling through the text in the right column.
      I tried just anchoring text to the top of the right column (without linking the anchor to a different html file) but when I scrolled down in the right table, the whole page scrolled down so that I could no longer see the list of names in the left column.
      How can I achieve this effect? Do I need to anchor to another html file, or can I achieve the result without linking to a different html file?
    Thanks,
    George

    Iframes should be in there, but they only show up when you're in code view. But all it does anyways is place the frame tags where your cursor is. You'll also need to add some properties, such as width and what not. A quick google for iframe properties will provide plenty of examples. Like a regular frame, it displays a separate a html page which must be referenced in the properties. A named anchor as we know is part of the link which can be used onnthe same page, or open another page to a certain location. So it's just a matter of formatting the link  so it targets and includes the iframe as well as the other attributes. I'm pretty sure it's doable and not too difficult, but again, a quick google shold provide the answer.

  • Creating an XML for the database having link to a table in another database

    I have a database in which a table holds the link to table in different database.
    I am not able to create the XML file.It is giving me an error
    Error# 2516:XMLExporter Method Run of Object '_Application' Failed.
    Is there any alternate or round about process to generate an XML file.

    I assume this is MS Access database? What version?
    Is the link valid from within Access? Can you see the remote table?
    You could make a copy of this mdb file and just remove this link table to see if the exporter runs to completion without errors.
    Donal

  • Is there a way to edit, or link to other tables Forms on Numbers?

    I was trying to edit a Form in Numbers, and also try to use multiple tables for a Form, and on that same topic, how can I link a cell from a table on a different tab to another table, i also tryed to format a cell as popup menu, and than poin the options on that menu to a cell on a table so it would update it self every time a new cell would be add.. is there any one with ideas how to?

    What you are asking about is possible.  I don't have an iOS device with Numbers.  Referencing others cells (linking) is found in the Numbers Users Guide:
    http://manuals.info.apple.com/en_US/Numbers09_UserGuide.pdf  page 127
    you can get more focused help on this question in the forum dedicated to Numbers on iOS: https://discussions.apple.com/community/app_store/iwork_for_ios

  • Can I link my Media Query to a HTML file?

    Can I make this below:
    <link href="mobile.css" rel="stylesheet" type="text/css" media="only screen and (min-width:300px) and (max-width:320px)">
    to link to an HTML file instead like -> <link href="mobile.html" rel="stylesheet" type="text/css" media="only screen and (min-width:300px) and (max-width:320px)"> ?
    Thanks in advance.

    I'm trying to get the browser to look at what "media width" and then autodirect to another html file. So as an example:
    Webpage opens, looks to see if i'm on a device that has a maximum width of 320px if NO then it stays as is. if YES, it loads another html file that is 320px freindly.
    My website has stacks of java going on, and will not work on mobile devices properly. Just changing the css file won't do anything close to what the website looks like.
    I've searched and searched and found nothing.

  • How i can access and edit the table of database(.mdb) file through Labview

    Dear sir,
    I want to access and edit the table of database(.mdb) file through Labview and it should save.
    please tell me how i can do it.
    i am waiting for reply.
    regards
    Rajendra

    there are options aplenty for this.  First off, do you have the database connectivity toolset?  If so, You can do it from there.  Following the examples in labview. Or you can do a search for ADO or access database, and find plenty of VIs that can do this. 
    Paul <--Always Learning!!!
    sense and simplicity.
    Browse my sample VIs?

  • Photoshop 10 can't open image CD's from another Photoshop file.

    My Windows 7 and Photoshop Elements 10 will not open image CD's downloaded from another Photoshop file. Could open them in a previosu Windows XP and older Photoshop. Now get message: &quot;This file does not have a program associated with it for performing action. Please install a program or, if one is already installed, create an association in the Default Program default control panel.&quot;
    There are hundreds of asscociation  files listed.  WHICH ONE DO I CHOOSE????

    Right-click on file and choose properties.
    To the right of “Opens With” click on the change button.
    In the Open With dialog click on the Browse button
    Navigate to:
    Program Files (X86)\Adobe\Photoshop Elements 10
    Select (highlight) PhotoshopElementsEditor.exe
    Click Apply
    Click OK

  • Take data from another numbers file ?

    Let say I have a Numbers file called "FileA" and I want the Sum from another file called "fileB"that is in the same folder.
    Thanks in advance guys

    Very confusing for a newbye like me ..
    what is confusing, the script of the feature unavailability ?
    hope for the next version they will implement this simple feature
    Who told you that it's a simple feature?
    What is your knowledge in programming allowing you to state this kind of thing?
    _*Hoping is perfectly useless, Apple Engineers can't read your dreams.*_
    If you wish to get a new feature, use the dedicated channel:
    _Go to "Provide Numbers Feedback" in the "Numbers" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'10
    At this time, the easy workaround is to move the tables of document 2 into document 1.
    It's easy to grab datas from one table of document 1 to an other table of the same document.
    Yvan KOENIG (VALLAURIS, France) samedi 12 septembre 2009 21:02:01

  • Why can't I open just one of my numbers files?

    Hello,
    I am unable to open a rather important numbers file on my macbook pro. I can open all other numbers files but when I double click this one, it sort of "shines" as if its going to open then nothing happens. The data in it is really important and I can't get to it. I also have set up my time machine (as I don't know how) and wondered if anyone has any suggestions?
    Many Thanks

    Sheffield28 wrote:
    ... I also have set up my time machine (as I don't know how) and wondered if anyone has any suggestions?
    Many Thanks
    If you meant that you have not set up your time machine, the following may help with that: Mac Basics: Time Machine backs up your Mac - Apple Support
    Regarding the Numbers file -- this is a long shot, but rather than double-clicking on it you might try first starting Numbers and then use its File menu Open command and see if that will open the file.

  • Can't link to a cell in another sheet at certain point

    Hello,
    this is the first time I use the support communities.
    I have a continuing promblem with numbers ( v. 2.3). I'm working on a projekt for my univerity and are quite familiar with number. But at a certain point it get's impossible to link to another cell on a different sheet! This works fine until a certain point (which I actually don't know).....
    I do the same stuff which I did very often before but it dosent work....
    1. I click on the cell I want to have the linked value in it
    2. I press = to start linking.
    3. I go to the cell i want to take the data from (in another sheet).
    4. The Box becomes white with the name and position of the source cell in it. But when I klick enter it dosn't work....
    I really don't have an idea what this could be... It worke fine in the same way before a few hundered times... Is there any limitation of link's between the single sheets or something?
    I'm very glad for any help in this issue
    Regards,
    Gregor

    On your last screenshot, you had moved off of the cell you were working on. The resulting formula/reference was not shown.
    Becasue it is not in English, it is hard for me to tell for sure what might be going on.  The reference in your third screnshot looked odd to me.  In English it would be one of the following forms when referencing a cell on a different sheet:
    Sheet name::Table Name::Cell address
    Table Name::Cell Address
    or, if "use header names as cell addresses" is on
    Sheet name::Table name::column name row name
    Table name:: column name row name
    column name row name
    The reference shown in your third screenshot doesn't seem to fit that pattern
    I am assuming if you look at your resulting formula, the cell reference is not in a colored oval, it looks like plain text.
    I've seen header names get misinterpreted by Numbers, like it can't figure them out and make a reference from them. If you are using header names as cell references, changing the names can fix it.  Turning off that feature might also fix it. I don't use that feature usually; it often makes my formulas too long and complicated.
    I have not seen a similiar problem with table and sheet names but you could try changing them to see if it helps.
    Sometimes Numbers simply has a problem with a reference and you have to start over with the formula and it will work the next time. I don't know why, it just happens sometimes.

  • In Muse can you link to an element on another page?

    I was hoping that there was a way to link to an "element" (Not a page!) located on anther page either through Muse natively or by a script.  I'm not a coder or I wouldn't be using Muse.  I know you can link to other pages but I don't know about elements of other pages, specifically a "Lightbox" pop-up.
    I have a pop-up on a secondary page, lets say page 2, that I would like to also pop-up on anther page, lets say page 1, when clicked from page 1 but I don't want to have to put this Lightbox pop-up in two (both) locations because I actually have a couple hundred of these.
    Any suggestions would be greatly appreciated.
    Thanks,
    Ryan.

    If you want the pop up on multiple pages you will need to put it on multiple pages. Or you could add the link to the pop up as well as the pop up itself to a template and create the pages that you want that pop up using that template. Another one you can try is to have your pop up on a page all by itself with no template or other content and then add the page to any other page using an iFrame.

  • 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

Maybe you are looking for

  • TCP socket I/O from the kernel

    We've been working on extending our filesystem support from UDP to TCP, and have run into an apparent roadblock. We'd like to know whether Sun is aware of the problem that we're seeing, and if so, if there is something else we should be doing to avoi

  • Back to School card

    Hi, does anyone know how much time we have to use the "back to school" Apple iTune card(50$)?

  • Weblogic startup class and EAR file

    Hi, I am using WL 8.1.5. I have a weblogic starup class MyStartup that implements T3StartupDef. (it does not specify package). I jar-ed it. And I placed MyStartup.jar file into the MyEA.ear file. And I placed that into applications dir. With WL Conso

  • Management IP Address : best practices ?

    Hi, What are the advantages to assign the mgmt IP @ to service profil rather to blade server ? Can we do the both ?... and in what puropose ? what are the best practices for specific use ? many thx in advance for you feedback. Nicolas.

  • Oracle 10g on VMWare

    I have not been able to find a satisfactory answer regarding Oracle 10g on VMWare. On one page, Oracle states that "Oracle will not support production deployments of Oracle software on VMware" (http://www.oracle.com/technology/tech/linux/vmware/cookb