Why can't I reference data from a cell in file "A" to a cell in File "B"

I would like to have a master file, that contains multiple tabs and many data tables, look ups etc.
From this file, I would like to create many "sub" files, that contain only the relevant information for the person receiving that specific file.
I know this is possible in Windows (sorry for swearing) but I can't get it to work in Numbers.
I do not want to send out copies of the Master File, as it contains sensitive information.
Can anyone help please?

Hi Simontown,
While you can link docs in excel I believe that sending only a sub file would result in broken links. In Numbers you can skip that step because you can't link the docs to begin with.
If you are only needed to share the info in a tab you can use the print dialogue to save a pdf of any sheet. If you try to export a pdf from the file menu you will be sending the entire document.
Another approach would be to create your sub-files as separate sheets that each contain a table that imports all the data needed for that sub file. In order to send the file you would first need to copy the info in that data table and "paste formula results" back in place. You could then select all the tables, copy and paste into a new document. This could be automated with a script. Any changes made to it would not reflect back to your original.
quinn

Similar Messages

  • HT4906 why can't I up date my iPhone from my laptop (mac book pro) but I can update my laptop from my phone?

    why can't I up date my iPhone from my laptop (mac book pro) but I can update my laptop from my phone?
    Peter

    Maybe if you told us what you have and exactly wha you are doing someone could help - re-read your post from the viewpoint of a person who does not know you or know anything except what you post - think you could help?
    LN

  • Distribute by Reference Data from Sender to Recipient planning function?

    Hi all;
    I’m trying to use the planning function “Distribute by Reference Data from Sender to Recipient” to distribute the reference data by material to plan data.
    This is:
    Reference Data:
    Version: 001
    0vtype: 010
    Material: M1; M2; M3
    Sub-brand: SB1;
    Price Group: PG1;
    Customer: C1;
    Area Manager: AM1;
    Exercise/Period: 001.2008; 002.2008; 003.2008
    Quantity: 100; 200; 300 -> 600
    Plan Data 1:
    Version: 002
    0vtype: 02
    Material: #
    Sub-brand: SB1;
    Price Group: #
    Customer: C1;
    Area Manager: AM1
    Exercise/Period: #
    Quantity: 1000
    I want to distribute the 1000 according with the material reference data. The plan doesn’t consider the Price Group and Exercise/Period.
    Goal:
    Plan Data 2:
    Version: 002
    0vtype: 02
    Material: M1; M2; M3
    Sub-brand: SB1;
    Price Group: #
    Customer: C1;
    Area Manager: AM1
    Exercise/Period: #
    Quantity: 167; 333; 500
    M1 = 100 / 600 * 1000
    In the planning function I had use:
    Fields for change:
    Material: 0 - ZZ
    Fields for conditions:
    0vtype: 020
    Exercise: 2008
    Key figure: quantity
    Version: 002
    Old material: #
    Reference characteristics:
    0vtype: 010
    Exercise: 2008
    Material: (I didn’t fill because it doesn’t allow all the material items)
    Key figure: quantity
    Version: 001
    When I execute the function a message appears:
    “No reference data”
    Can anyone help me?
    Regards;
    Ricardo

    Hi,
    price group is missing in your reference data
    D

  • Why can't I attach images from Iphoto to outlook

    Why can't I attach photos from Iphoto via outlook? I just read in a blog that this is a known issue to Apple/Mac and Micrsoft is there any anticipated dates to fix this problems? and if is not getting fix why are they still selling this product for a system that does not supports it? this is kind of upsetting smh....

    Because you have a problem and you need to fix it
    with no information except it does not work no one can give any more help than that - remember that we are jsut users like yourself and know nothing except what you tell us - which in this case was nothing except it does not work
    Some details like the OS version, version of iPhoto, what does happen and what does not ahppen, any recent changes, ect would at least give someone a chance to try to assist you
    LN

  • Can't receive the data from my hardware device by LAN

    Hi!
    background:  For a testing task, I set up a hardware testing platform that including of a power supply device, a hardware to be tested(Device Under Test), a power Meter and a PC.   i build a program to control the hardwares, and they communicate with each other by LAN. at first, the program as a client can normally communicates with my hardware after initializing all hardwares. And then the program turns off the power of my device and turn on power again after delay 60 seconds. after initiantion, my hardware can execute the command which is received from the program, but the program can't receive the data from my hardware. Why my program cannot receive the data from my hardware, after the second time turn on the power of my hardware?  the program as client code as below:
    int CVICALLBACK ClientRRH (unsigned handle, int event, int error, void *callbackData)
      char temp[64]={0};
      int  ReceiveSize=0;
      char *Pos;
      switch(event)
       case TCP_DATAREADY:
        if( (ReceiveSize=ClientTCPRead (rrhHandle, readRRHBuffer, 4096, 2000))<0)
                     SetCtrlVal (panelHandle, PANEL_TEXTBOX_INFO,"Read RRH trace error!\n");  
                    return 0;
        else
         if (ReceiveSize>4096)
          readRRHBuffer[4096]= '\0';
           else
           readRRHBuffer[ReceiveSize] = '\0';
        if (Flag)
          Pos = strstr(readRRHBuffer,orderString);
          if(Pos)
           //strncpy(temp,(Pos+ strlen(orderString)),maxSize);
           _mbsnbcpy(temp,(Pos+ strlen(orderString)),maxSize); 
           sprintf(receData,temp);
           *temp=0;
           Flag=0;
           maxSize=0;
           *orderString=0;
        SetCtrlVal (panelHandle, PANEL_TEXTBOX_INFO,readRRHBuffer);
        *readRRHBuffer=0;
                break;
             case TCP_DISCONNECT:  
       rrhHandle =error;
                SetCtrlVal (panelHandle, PANEL_TEXTBOX_INFO,"TCP Clienterver has closed connection!\n");                 
                SetCtrlVal (panelHandle, PANEL_LED_RRH, 0);      
                break;
     return 0;
    int RRH_ini(char *RRH_address)
        ViChar Buffer[200];
        char temp[200];
        int status =0;
     if((ConnectToTCPServer (&rrhHandle, 7006, rrhAddr, ClientRRH, NULL, 1000)<0))
         SetCtrlVal(panelHandle,PANEL_LED_RRH,0);
        SetCtrlVal(panelHandle,PANEL_TEXTBOX_INFO,"Connection to RRH fail...\n");
         else
         SetCtrlVal(panelHandle,PANEL_LED_RRH,1);
         SetTCPDisconnectMode (rrhHandle, TCP_DISCONNECT_AUTO);
         sprintf(RRHCommand,"%s\n","asb");
         ClientTCPWrite (rrhHandle, RRHCommand, strlen(RRHCommand), 0);
         Delay(0.2);
         sprintf(RRHCommand,"%s\n","asb#1234");
         ClientTCPWrite(rrhHandle,RRHCommand,strlen(RRHCommand),0);
         Delay(0.2);
         SetCtrlVal(panelHandle,PANEL_TEXTBOX_INFO,"Connection to RRH successful!\n");
       return 0;

    Yes that's exactly my problem. The reader sends bytes but without a delimiter. So for example the greeting message I've mentioned earlier "iiAWID..." happens to be 32 bytes, therefore I made the following changes to the code:
    public void receive(int x){     // x = expected length of bytes being received
    boolean done = false ;
    int limit = x ;
    int counter = 0;
    try {           
    while (!done)
    if (in.ready())
    buffer.add(in.read()) ;
    counter = counter + 1 ;
    if (counter == limit)
    done = true ;
    }catch(IOException e) { // some code for handling}
    and this works fine, however, I'll probably have problems reusing this method later on, because some commands that I will send to the reader will result in responses of indefinite sizes. So I may have a response of length 12 one time and of length 8 the other. but between each response there's a maximum delay of 100ms... is there any way I can utilize that piece of information to improve my code?

  • Can we download employee data from ECC to CRM using standard middleware?

    HI,
    Can we download employee data from ECC to CRM using standard middleware? If yes pl give me the procedure.(not using HR ALE/IDOC)
    Thanks,
    Regards,
    PV

    Standard replication for employee to CRM is using ALE.
    BDoc send information for CRM for other business partner. If you want to use BDOC message for send employee to CRM, you should build your own BDOC message that read HCC Table and send this information to CRM.
    However send this information using ALE is not difficult. Why don't you wan to use ALE?
    Regards,
    Lyda

  • Why can't I message picture from my iPhone to a noniphone

    why can't I message picture from my iPhone 4s to another non-
    iphone ?

    Settings>Messages>Send MMS>ON
    Settings>Cellular/Mobile>Cellular data ON
    If that doesn't work read the article below:
    iOS: Troubleshooting Messages

  • Why can't i purchase music from an overseas store

    Why can't I purchase music from the US ITunes Store when based in AUS. I can't even find the music I want in searches unless i search overseas.

    This has been covered here many times already, but once again: Apple has no choice in the matter. It's due to restrictions placed on Apple by the record companies and other rights holders.  Quoting from This Business of Music (10th Edition) (by M. William Krasilovsky and Sydney Shemel et. al,  Random House LLC 2007) (and thanks to the Mimico Kid for the reference) :
    The difficulty of establishing workable business models for digital files (...) extends to where they are sold and where they are played. This is the issue of territoriality, and it is an illustration of how the Internet makes it necessary to reexamine basic assumptions that have been taken for granted (...).
    (....) In the music business the primary problem is that copyrights are national and therefore specific rights are tied to national laws and the interpretations of national courts.
    (.... T)hough we can one day hope to see the development of common standards with respect to copyright, the fact that the music business is building upon a history of nation-specific contractual relationships means that the goal of universal international standards is not, for the forseeable future, a practical one.
    (...) Adding to the difficulty (...) the copyrights themselves may have been assigned to different companies in different territories. The best hope for a cleaner start and a simpler future is worldwide recognition that digital uses are in fact - and should be in law - totally new.
    The content owners don't like cross-border sales of CDs either, but there's nothing they can do to stop such sales. They can, though, and do stop cross-border download sales, since if the download stores refuse, the rights holders won't license the tracks to that store.
    So unless and until the record companies, et. al,  all get together and agree to allow download stores to sell cross-border, there's absolutely nothing Apple or any other download store can do.

  • Why do we get the data from a view to a report.

    hi
    why do we get the data from a view to a report. is it possible to get the data from a view in all the cases?

    hi Jyotssna,
      Suppose you are planning to get the data from multiple tables then you got to specify seveal condtions and make use of joins which results in poor performance in fetching the data . In order to improve the performance we make use of views where the conditions of different tables are defined and the data is fetched accordingly.
    Regards,
    Santosh

  • Who worked with ICS' Model 4896 GPIB? I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    I can not count the data from the module. Can prompt as it to make. It is desirable with examples (data read-out from the module and data transmission between channels. It is in advance grateful.

    Hello. Most of the engineers in developer exchange are more familiar
    with NI products. Contacting ICS for technical support is a better
    course of action.

  • Unfortunately, I lost by an update all the apps on my iPad 2. Now I can not pull the data from the cloud to my iPad. How is this possible?

    Unfortunately, I lost by an update all the apps on my iPad 2. Now I can not pull the data from the cloud to my iPad. How is this possible?

    If you just installed iCloud does that mean you updated the iOS that's running on your iPad?  If so, you'll want to restore all the programs you have from the backup you hopefully made.
    Refer to these articles for help.
    iTunes: Backing up, updating, and restoring iOS software.
    If you don't want to use iCloud, simply don't activate it.
    You can also download the programs again.
    If you live in a country that supports re-downloading apps then you can re-download them.  You can refer to this article for more help.
    Downloading past purchases from the App Store and iTunes Store
    What to know if your country supports downloading past purchases?
    iTunes in the Cloud Availability

  • Why can't I send email from my iPad Air

    Why can't I send email from my iPad Air? I can receive them but not send.
    Thanks

    Hi..
    Try the troubleshooting steps here >  iOS: Troubleshooting Mail

  • How can I restore my data from iCal? I didn't make any backup, but I use  time machine with an external HD. I deleted iCal when I deleted my gmail account. I have tried to restore, but I can only restore the iCal software and not the data.

    How can I restore my data from iCal? I didn't make any backup, but I use  time machine with an external HD. I deleted iCal when I deleted my gmail account. I have tried to restore, but I can only restore the iCal software and not the data.

    So what is your question?
    If you forgot your encryption password:
    Warning: Make sure it's a password you will remember or write it down for safekeeping. If you encrypt an iPhone backup in iTunes and forget your password, you can't restore from backup and your data will be unrecoverable.
    If you can't remember the password and want to start again, you must perform a full software restore and chooseset up as a new device when iTunes prompts you to select the backup from which to restore.
    The above comes from here:
    http://support.apple.com/kb/HT4946

  • Why can't I purchase movies from my Apple TV? When searching not all available movies even show up!

    I've had my apple tv for a while now, but have never actually purchased anything from the itunes store directly from the device. A friend recommended "Sleepless in Seattle" to me, and since it's not in Netflix or On Demand, I decided to buy it from itunes.
    In doing a search in the Movies section of my Apple TV and typing in "Sleepl", I got no results. Bummed, I went onto Amazon to see how much the DVD would cost. On a whim, I opened itunes on my computer and did a search for the movie. To my shock, it is available for purchase on itunes for $9.99!
    Once I found this out, I went back to my Apple TV and searched again. The movie still didn't appear to exist. I noticed then that every movie on the apple tv only gave me the option of renting, not buying. I was going to purchase from my computer, but then thought better of it because I wasn't sure it would be made available for me to watch on the apple tv.
    Is there something wrong with my system? Why can't I buy movies from the device? I can buy tv shows, so it just seems weird to me that this is limited to the movies!

    Ha, ha, you are such a tool!
    That profile was written in 2007 and never updated. Unlike you, I don't live on this forum. I have one 5 year old Dell gathering dust, waiting for the trash that has some kids software on it my kids never use.
    Currently I own a 27 inch iMac, and a 21 inch iMac used by my wife. I just sold my MacBook Air, which replaced my MacBook Pro of two years ago. I have an AppleTV v2, and unfortunately gave my AppleTV v1 to a friend before I realized they stripped out the movie purchase feature. We also own an iPad, two iPhones, and 4 iPods, two of which are used as digital music storage for our cars.
    So yes, all of my factual posts concerning Apple's shocking decision to try to hide the fact they removed significant functionality from AppleTV when they revved it, are just driven by the fact that 4 years ago I used almost no apple products. Apparently I harbor a twisted desire to hurt the company that provides me almost all of my technology of choice today, despite being an early software developer for the Mac, helping start two Macinotosh software companies in the 1980s and 1990s, and working at Apple for 2 years in the early 90s.
    The truth is, Apple's products weren't so good 15 years ago so I gradually switched to Windows for professional reasons. About 4 years go I bought an iPhone, and started to wake up to the fact that Apple had done a tremendous job moving the Mac platform to the intel architecture, and was very happy to replace my crappy dells with Apple products.
    But that doesn't mean I wear blinders when their product teams and marketing department makes mistakes, or does something deceptive.

  • How Can we get the data from Non-SAP to SAP in WebDynpro

    Hi,
    I hope u understand my query, How can we get the data from Non-SAP to SAP thru WebDynpro Programming.
    Help out with the steps for getting the data or procedure.
    Regards,
    Mutyapu

    You can expose the APIs in the Non-SAP backend as Web Services, and consume them in SAP by creating an Enterprise Proxy. Then these can be called just like normal class methods from Web Dynpro.
    Regards,
    Nithya

Maybe you are looking for

  • How can I share notes from iPhone to MaCbook

    I can't share my notes from my iPhone to my MacBook. How do you do that?

  • How to place the camma in currency

    Hi All, I have a currency field. For country Kora, they don't  have  decimal places in currency. 52,000.00 KOR   is one exaple.  Here i have to   place camma in currency as below. 5,200,000.   how to solve the aove problem. I don't know where and how

  • IMovie thumbnail key photo

    Hi there, I have created a movie in *iMovie 11* and published it to my VIMEO gallery. The problem is the gallery shows a frame of the movie thats different than what I want (same problem within the finder). I can't find a way how to change it, but I´

  • Incorrect pricing surely? CS5 Master Collection upgrade

    Upgrading from CS4 Design Standard to CS5 Master Collection is cheaper in all languages except in English (i.e. German, Dutch, Italian, etc are cheaper than the English Version)! English is cheapest in all other upgrades i.e. to Production Premium (l

  • Macbook (Late 2006) w/ 10.6.7 crashing when playing video

    Lately, my computer has been crashing while I am playing video either through an external display or with just my computer.  A grey screen with multiple languages flashes across the screen and tells me to force shut down.  Also, the the video freezes