Numbers out of memory

I've tried to import an excel spread sheet into numbers but I'm getting the error "out of memory" anyone know why??

Dan,
Im guessing that it has to do with the limitations of Pages itself. Definitely check your device and icloud settings to rule out something that can be fixed. But if you still have lots of space on each, then the issue is likely that the spreadsheet is too complex for Pages (at least on the iPad) to handle. I've seen this on several complex work spreadsheets I've used. I think the complexity is just beyond what Pages can handle. Some of this might be due to the size of the memory available to Pages, so in that respect, an iPad 3 or 4 might work better than my Ipad 2, but that's just conjecture on my part.
The only alternative I've found is to use cloudon to work on those spreadsheets. The excel app in Skydrive might also work, but I haven't tried that on a spreadsheet that won't run in Pages. If you try either option & it works, or you find something else that does, let us know how it turns out.

Similar Messages

  • Out of memory error when opening an .xlsx file in numbers v1.6.2 on ipad 2

    The file sizes are too small (38KB) for this to be a true "out of memory" issue. Any suggestions? I didn't have any problems before updating numbers to the current version.
    I haven't downloaded the new iOS 6 operating system. Is that the problem?

    Ended up being a problem with the Excel file we were using. Recreated the file and all was ok.

  • My mac's run out of memory and I can't find the culprit!

    Hi, I'm in serious need of some help! I'm sure this is simple, but I'm about to break down over it – I use my mac for everything. I've got a 200gb 2009 macbook (running iOS7), and it's told me it's run out of memory. The storage tab in 'about this mac' tells me 108GB is being used for video – but I can't find them! My iPhoto has about 17GB of movies, my iTunes has around 20GB, and I've got maybe another 10GB in files within finder – but that's still only half the videos my mac is saying it has? How do I find the rest? I've got 80GB being used by 'other' as well – is that just pages and numbers documents, along with the iOS? Is there a way of finding exactly what all my memory's being allocated to?
    I've got the entire mac backed up on an external hard drive, but I'm terrified of deleting anything from the mac in case that fails. I plan on getting a second external HD, but even then I think I'll be too worried (I've heard about so many hard drives continuously failing). How does anyone manage all their stuff?!?
    Thank you in advance, for any help you can offer.

    Just a slight correction to start, you're not running iOS 7. You're running a version of OS X, iOS is for mobile devices like iPhones and iPads. To find out which version OS OS X you're running click the Apple menu at the top left and select About This Mac.
    This http://pondini.org/OSX/LionStorage.html should help you understand "Other".

  • Out of Memory Runtime Error

    Hello,
    I'm new to Java, this is only my third time using the language, and first time writing an applet. What I'm trying to do is create an applet that will plot 2D a set of coordinates based on an input string. Inexplicably, the VM gives an "<<Out of Memory>>" error while running. I urgently need a solution to this problem (as in, in the next two days... by August 9th, 2001). Any help or suggestions would be greatly appreciated.
    -Mark Radtke, radrik2001<REMOVE>@yahoo.com
    import java.awt.*;
    import java.applet.*;
    import java.io.*;
    import Orbit;
    public class TwoDApplet extends Applet {
         private Orbit stringHolder = new Orbit();
         public void init() {
              System.out.println("execution");
              stringToDraw();
              System.out.println("Done executing.");
         public boolean stringToDraw() {
              Graphics g = getGraphics();
              g.setColor(Color.black);
               StringReader sReader = new StringReader(stringHolder.case1);
               int XYline = 0, pArrayPlace = 0;
               int X = 0, Y = 0, last_x = 0, last_y = 0;
               float temp_x = 0, temp_y = 0;
               final char lineBreaker = '%', separator = ' ';     //These char's set the char that denotes line breaks and spaces between words, '\n' and ' ' by default
               StringBuffer buffer = new StringBuffer();
               final StringBuffer blankBuffer = new StringBuffer(" ");
              char temp;
              boolean flag = false;
              try {
                    temp = (char)sReader.read();
               } catch(IOException e) {
                    System.out.println("\n\n\tERROR: " + e);
                    return false;
         try {
              do {
                   switch(temp) {
                        case lineBreaker:
                             switch(XYline) {
                                  case 0:
                                       last_x = X;
                                       temp_x = Float.parseFloat(buffer.toString());
                                       X = (int)(temp_x * Math.pow(10.0,11.0));
                                       g.drawLine(last_x, 0, X, 0);
                                       break;
                                  case 1:
                                       last_y = Y;
                                       temp_y = Float.parseFloat(buffer.toString());
                                       Y = (int)(temp_y * Math.pow(10.0,11.0));
                                       g.drawLine(last_x, last_y, X, Y);
                                       break;
                                  default: //anything beyond 2 numbers in a row is ignored
                                       g.drawLine(last_x, last_y, X, Y);
                                       break;
                             } //end of nested switch
                             buffer = blankBuffer;
                             XYline = 0;
                             break;
                        case separator: //case separator:
                             switch(XYline) {
                                  case 0:
                                       System.out.print(buffer.toString());
                                       last_x = X;
                                       temp_x = Float.parseFloat(buffer.toString());
                                       X = (int)(temp_x * Math.pow(10.0,11.0));
                                       System.out.print("X = " + X + " ");
                                       break;
                                  case 1:
                                       last_y = Y;
                                       temp_y = Float.parseFloat(buffer.toString());
                                       Y = (int)(temp_y * Math.pow(10.0,11.0));
                                       System.out.print("Y = " + Y + " ");
                                       break;
                                  default:
                                       break;
                             } //end of nested switch
                             buffer = blankBuffer;
                             XYline++;
                             System.out.println("OK\n");
                             break;
                        default:
                             if(buffer.toString().equals(" ")) //i used to test is buffer == new StringBuffer(" "), but I figured that may have been part of the problem... it didn't help
                                  buffer.setCharAt(0, temp);
                             else
                                  buffer.append(temp);
                             break;
                   } //end of switch
                   try {
                         temp = (char)sReader.read();
                    } catch(IOException e) {
                         System.out.println("IOException caught... throwing...");
                         flag = true;
                         throw e;
                    } catch(NullPointerException e) {
                         System.out.println("Caught NullPointerException. You suck."); }
              } while(flag == false); //end of while
         } //end of try
         catch(NullPointerException e) {
              System.out.println("Caught NullPointerException.");
         catch(IOException e) {
              System.out.println("Caught IOException: " + e + "\n");
              return true;
    public class Orbit { //when totally completed, this class will just hold a few strings, most of which are much, much larger than this one
         public String case1 = "3.0745036727705142e-009 3.9417146050976244e-009%4.9852836681565192e-009 3.5573952047714837e-010%3.6200601148208685e-009 3.4445682318680393e-009%8.1006295549636224e-011 4.9953846385005008e-009%3.7105805578461100e-009 3.3440347969092934e-009%4.9772361223912569e-009 4.1037439683639425e-010%3.1322774963314919e-009 3.8884603960830088e-009%";

    Do you need to hold those values in a String? If not then simply store those values in a doubly-dimensioned array and avoid parsing the string altogether (see sample applet below). If you do need to store the values in a String consider using a StringTokenizer for parsing.
    import java.awt.*;
    import java.applet.*;
    import java.io.*;
    public class TwoDApplet extends Applet implements Runnable
    Thread th;
    int x;
    int y;
    int lastX;
    int lastY;
    double coordinates[][] = {{3.0745036727705142e-009,3.9417146050976244e-009},{4.9852836681565192e-009,3.5573952047714837e-010},{3.6200601148208685e-009,3.4445682318680393e-009},{8.1006295549636224e-011,4.9953846385005008e-009},{3.7105805578461100e-009,3.3440347969092934e-009},{4.9772361223912569e-009,4.1037439683639425e-010},{3.1322774963314919e-009,3.8884603960830088e-009}};
    final double operand = Math.pow(10.0,11.0);
    public void start()
      if (th == null)
       th = new Thread(this);
       th.start();
    public void stop()
      if (th != null)
       th = null;
    public synchronized void run()
      for (int z = 0; z < coordinates.length; z++)
       lastX = x;
       lastY = y;
       x = (int)(coordinates[z][0] * operand);
       y = (int)(coordinates[z][1] * operand);
       repaint();
       try
        wait();
        Thread.sleep(100);
       catch(InterruptedException ie)
    public void update(Graphics g)
      paint(g);
    public void paint(Graphics g)
      g.drawLine(lastX, lastY, x, y);
      synchronized(this)
       notifyAll();
    }

  • Out of memory error?  Are we serious?

    When using AIM on Mac OS 9, if I talk enough (litterally, it's related to how much I IM), I'll eventually get an "Out of memory, please close some open apps" or something like that.
    I have 1GB of RAM! And from what I see in About This Mac, I have like 891MB free! Is this why people hated Mac OS 9's memory management? It just seems "Stupid" to say the least..

    Hi, Transgenic -
    In OS 9, most programs have a static memory allocation - it can not be changed on the fly in response to need. The OS itself and SimpleText are a couple of exceptions - their memory allocations are dynamic, capable of being increased in response to need (SimpleText only a small amount, though).
    Other programs can not grab more memory than the amount which has been allocated for them, and they must grab that at the beginning when they first load. The solution then is to incease the memory allocation, allowing them to grab more when they are started up. The item to increase is the Preferred allocation amount -
    Article #TA21666 - Assigning More Memory to an Application
    Note that the program can not be running when doing the Get Info, and that the Get Info must be done on the icon of the program itself, not on an alias to it or a folder.
    You may need to experiment with increasing the Preferred amount, until you get sufficient into it to handle your needs. Doubling the original Preferred amount is often a good starting point.
    Don't be shy about raising it a lot if that seems to be needed. For example, Diablo II - in order to run it with Virtual Memory disabled (which is what I prefer), I've added 410,000 to its original 77,500 allocation.
    <hr>
    The memory usage bars shown in About This Computer show relative usage. One trick to monitor accurately the memory usage of a program while it is running is to open About This Computer, turn Balloons on ("Show Balloons" in the Help menu), then hover the cursor over the memory bar for a program in About This Computer (don't click) - the balloon that appears will display the memory usage in exact numbers.
    <hr>
    Is this why people hated Mac OS 9's memory management?
    I've never hated it; it is what it is. Like most things that get in my way, I learn to work with or around it.
    <hr>
    It just seems "Stupid" to say the least..
    I don't think "Stupid" is an appropriate description. It is unreasonable to expect an OS version that was first coded nearly 10 years ago (the initial release of OS 9), and one whose roots are 25 years old (OS 1 in 1984), to be as proficient in some things as more modern OS's, such as OSX.
    It would be like finding fault with a 1960's automobile for not having air conditioning or airbags or disk brakes.

  • Out of memory? i have deleted programs and recordings and no changes are recognized in memory

    I cannot take pictures because the "out of memory" comes up on the built in app. I can however take pics with hiptsamatic. What is going on with this memory. I deleted several apps with 100 megs and the memory numbers do not change or adjust downward. I ahve restarted the device and still no changes. Any ideas ?

    What is your final product? And do these 28 sequence need to be all in the same timeline?
    Try again with a new project and load the in one at at time. Give Premiere a chance to index etc if neccessary before loading up the next one.

  • RE: Big Log Files resulting in Out Of Memory of serverpartition

    To clean a log on nt, you can open it with notepad, select all and delte, add a space ans save as... with the same file name
    on unix, you can just redirect the standard input to the file name (e.g.:
    # > forte_ex_2390.log
    (Should work with nt but i never tried)
    Hope that will help
    De : Vincent R Figari
    Date : lundi 30 mars 1998 21:42
    A : [email protected]
    Objet : Big Log Files resulting in Out Of Memory of server partition
    Hi Forte users,
    Using the Component/View Log from EConsole on a server partition triggers
    an
    Out-Of Memory of the server partition when the log file is too big (a few
    Mb).
    Does anyone know how to change the log file name or clean the log file of
    a server partition running interpreted with Forte 2.0H16 ???
    Any help welcome,
    Thanks,
    Vincent Figari
    You don't need to buy Internet access to use free Internet e-mail.
    Get completely free e-mail from Juno at http://www.juno.com
    Or call Juno at (800) 654-JUNO [654-5866]

    So try treating your development box like a production box for a day and see if the problem manifests itself.
    Do a load test and simulate massive numbers of changes on your development box.
    Are there any OS differences between production and development?
    How long does it take to exhaust the memory?
    Does it just add new jsp files, or can it also replace old ones?

  • Out of Memory when opening page setup

    I am getting an "Out of Memory" error when opening the page setup window.  I am unable to continue as Crystal is locked up.  Has any one seen this behavior before?  I am running Crystal Reports 2008 Service Pack 0 Version: 12.0.0.683.  This is running in a terminal server environment.

    Hi Bruce,
    Please uninstall CRXI from the machine by following the Note as per below:
    Before getting started, uninstall Crystal Reports XI by launching the Setup.exe file from the installation CD or by using the 'Add/Remove Programs' command. If either of these methods fails to remove all Crystal Reports directories, files and registry keys, then continue with the resolution of this article.
    ==========
    WARNING:
    This resolution can be applied if Crystal Reports XI is the only software installed on the computer that uses the Business Objects directories, files and registry keys.
    For example, Crystal Analysis, Crystal Enterprise and BusinessObjects Enterprise XI are applications that may share the same directories, files and registry keys.
    Removing these directories, files and registry keys may cause other software to function incorrectly.
    ==========
    1. To manually uninstall Crystal Reports XI, delete the following directories:
    u2022 C:\Program Files\Common Files\Business Objects\3.0
    u2022 C:\Program Files\Business Objects
    ====================
    NOTE:
    Do not remove the directory C:\Program Files\Common Files\Business Objects\3.0 if you have BusinessObjects Enterprise XI or Crystal Reports Server XI installed. These files are shared by both applications and removal of these files will cause Business ObjectsEnterprise XI and Crystal Reports Server XI to function incorrectly.
    ====================
    2. Delete the following registry keys:
    ====================
    WARNING:
    The following resolution involves editing the registry. Using the Registry Editor incorrectly can cause serious problems that may require you to reinstall the Microsoft Windows operating system. Use the Registry Editor at your own risk.
    HELP:
    For information on how to edit the registry key, view the 'Changing Keys And Values' online Help topic in the Registry Editor (Regedit.exe).
    RECOMMENDATION:
    It is strongly recommended that you make a backup copy of the registry files (System.dat and User.dat on Win9x computers) before you edit the registry.
    ====================
    u2022 HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Crystal Reports\
    u2022 HKEY_CURRENT_USER\Software\Business Objects\Suite 11.0\Crystal Reports
    u2022 HKEY_USERS\S-#-#-##-...-####\Software\Business Objects\Suite 11.0\Crystal Reports
    (The number signs (#) represent a series of numbers that are different on each computer.)
    ====================
    NOTE:
    After making changes to the registry, restart the affected service or application as required.
    ====================
    For CR2008 please install SP0 from
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm]
    I hope this helps.
    Shraddha

  • Help! Mid files cause "out of memory" session shut down.

    When I export .mid files from Reason 7 and import them into Logic Pro 9, it give me the error message "out of memory" and shuts down the session. Help!!

    I tried a number of values that were multiples of 1024 (2048, etc).
    The only thing that worked seemed to be changing the number and rebooting the server machine.
    Not sure what caused the initial problem though.  Saw very wierd activity in the FMS console.  Had a few hundred users connected, as I typically do for one of my events, and the chat application was repeatedly unloaded from FMS.  When it was reloaded the FMS console would show crazy large numbers in the "Clients" column - numbers like 3954.  Then it would drop to like 340.  Then shoot up again to wildly large numbers.
    Is that the result of a memory problem?

  • ACR 8.1 "Out of Memory" issue when processing over 70 - 24mb files

    Good Morning Folks,
    I've recently upgraded my computer to Win 7 and then to PS CS6 Extended.  Now when I process RAW files in ACR 8.1, I get an "Out of Memory" error if I do more than 70 ~ 80 - 24 mb files.  Also, it's running really slow.  It's taking nearly 50 seconds to process 1 - 24 mb file where PS CS3 and ACR 4.X it took only 17 for the same size file.
    Computer Specs; 3.40Ghz, 4GB RAM (max for the mother board), 120 GB HD "C", 40 GB Scratch Drive, Win 7
    What I have done is made sure that the scratch drive is listed first for cache in both PS and ACR, then in ACR, set the cache to nearly 500,000. (I think these numbers are correct, I'm not at the offending computer now)
    So the questions are; do I need to make any changes to specific setting?  Does PS CS6 and ACR 8.1 require more RAM?
    Any suggestions would be helpful.
    Thanks,
    Captain 1854

    When getting a new computer get a big enough C drive to hold all the programs and still have at least 50% free for future expansion (should always have 15% free). 
    Best if you have a separate internal HD for scratch, so computer can read program and write to scratch at same time.
    Get a mid range video card with 1 gig VRAM.
    Win7 better than Win8.

  • I am getting a constant error message on my desktop."Out of memory at line 50?

    For the last two weeks, when i use my Windows 7 computer, i keep getting an error message which states, webpage error, out of memory at line 50". The error message also states the same problem at other line numbers? I have run error checking and attempted a defragmentation on Drive c. unable to correct this problem. Can anyone help?

    Run a clean installation of Firefox 10 and check
    * getfirefox.com

  • Build array out of memory

    Need help im new to labview im posting very simplified example of code over a few hours im getting out of memory error normaly this would be sensor data being colected every 2-4 sec and writen to a csv file. 
    Attachments:
    build array example.vi ‏19 KB

    If you dramatically speed up the loop (e.g. remove all waits), you will obviously run out of memory in the queue because you generate numbers much faster than they can be written to disk. You need to ensure that the generation rate is less than the average maintainable speed of the disk IO.
    Using write to spreadsheet file is also a low performance option, because of the constant file open/close operations and all the formatting steps. If speed matters, use a binary file and low level file IO. Open it once before the loop, and just append inside the loop. Close it when the loop ends.
    Maybe you should set an upper size limit for the queue?
    I don't have the ogtk subVI, but here's how your code could be simplified (not showing the file IO suggestions). The browse option for the file controls also should be "new or existing".
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    build array example_MODCA.vi ‏10 KB

  • "Spreadsheet couldn't be imported. Out of memory."

    I can't open a 3MB excel file that has several sheets, including one with a few thousand rows.  It says I run out of memory.  Is filesize my problem?  If so, what is max size?  I also heard rumors that multiple sheets and lots of rows could cause problems.  Using iOS 4.2.8 (8E401).  Lots of memory available on my phone.

    I wouldn't be surprised if a "few thousand rows" had the effect of causing a complaint from an iPhone. In Numbers terms, a few thousand rows is large even on a Mac, but not large enough to choke it.
    There's an iOS community that might be better able to answer your question:
    https://discussions.apple.com/community/app_store/iwork_for_ios?view=discussions
    Good Luck,
    Jerry

  • Fireworks Out of Memory Error

    I guess this will be nothing more than a rant about my disappointment with this software.
    I recently introduced Fireworks into my web design workflow. I hop around PS, Ai, and Fw quite a bit. I am running a Quad-Core, 64-bit, 8GB Windows beast. I shouldn't be having this issue "out of memory error" 3-4 times a day. But I do. I searched the web for a solution, but there is none, expect the awkward - limit the number of opened files and restart every hour. Not acceptable.
    I'm truly disappointed in the lack of support or feedback that Adobe has addressed with this issue.
    If I could, I would switch software suites. This is truly an enormous oversight that has no foreseeable solution. I love Fw and Ps, but unfortunately I have lost faith in Adobe.
    I can't imagine the woes that CS 6 will produce.
    Unhappily yours.
    If there is a solution, what is it?

    My understanding is that data is collected from the bug list but generally, the engineers don't respond back. Based on the consisteny (number of similar bug reports) of a problem, it gets attention of the dev team, but then it has to be given a priority. It's unlikely the FW team has the numbers or resources that say, the Photoshop team has. So very likely it comes down to picking and choosing. What battles can be won? What is feasible to improve on, while still adding useful new features in the time span allowed? Not easy decisions and regardless, not every one will be happy with the choices.
    Based on CS5, I can see that Adobe is committed to improving performance and memory management in FW. FW CS5 was a vast improvement over CS4 in those areas. Perfect? No. But much better.
    For a detailed look at some of these improvements, check out these two articles:
    http://www.adobe.com/devnet/logged_in/bbowman_fwcs5.html
    http://www.smashingmagazine.com/2010/05/22/adobe-fireworks-is-it-worth-switching-to-cs5/

  • I am out of memory on my phone. Am I able to free space by transferring music from my phone to my cloud?

    I am out of memory on my phone. Am I able to free space up by transferring/storing music in my cloud vs my phone?

    THanks.  Deleting music is an option.
    do the numbers add up?  Sometimes the data clogging the phone is old messages or corrupted data.
    this link can explain both problem and solution:
    How to Remove "Other" Data from iPhone, iPad and iPod Touch

Maybe you are looking for

  • IPod is not being recognized on itunes anymore. Screenshots inside

    I was putting songs on last night and everything was going fine. After I finished putting the songs on, I checked my ipod and the songs were all there. I come back 5 minutes later to listen to it and there are all gone. Just like that. I took some sc

  • Can Apple help me?

    So I have had an Iphone 5s since April this year. A few weeks ago I was doing the dumb mistake of running down stairs, in flip-flops, while texting on my phone. One little stumble and "Crap" my screen is shattered. I am away at a school is Durham so

  • Query for SAP NW 7.0 and ECC

    Dear ALL , We  have purchased SAP NW 7.0  License .We have installed it with 2 components WAS ABAP and WAS as JAVA. Now my question is: this SAP NW 7.0 installation does not contain any functional module like SAP HR.MM,FI  etc... for this requirement

  • I just bought a book and when i sinked my itune it sais my device does not have permission to download it

    I bought a book online from the app store and i cannot download it on my iphone and it seems like if i cannot read it on my laptop... i dont understand why it tells me that i am not authorized to download it if i payed for the book.  If it's not goin

  • Need a query for monthly Report

    Hello All, I need a query for monthly report, comp_code emp_id dept_id work_day 100 A100 MECH 01/01/2013 100 A100 MECH 02/01/2013 100 A100 MECH 03/01/2013 100 A100 MECH 04/01/2013 100 A100 MECH 05/02/2013 100 A100 MECH 08/02/2013 100 A100 MECH 09/02/