Very simple spreadsheet crashes Numbers?

Hi,
This very simple spreadsheet entered on the Mac version of Numbers onto iCloud, crashes Numbers on my iPad. Can somebody confirm that this is indeed an issue with Numbers, and not some quirk in my configuration?
Any suggestion to work that issue around?
Needless to say, this spreadsheet is an extreme reduction of a complex spreadsheet that does significant statistical data analysis on biochemistry experimental data coming from a spectrophotometer. That spreadsheet works beautifully on the Mac, and I would like to have it run on the iPad, for use in the lab.
The crash comes from this formula in the "Keep" columns:
=IF (NOT(Outlier '2'),y '2', "")
The slightly simpler formula without the "else" value crashes number too:
=IF (NOT(Outlier '2'),y '2')
Removing the "Keep" column altogether prevents Number from crashing...
Thanks a million

For the sake of it, I recreated that spreadsheet on the iPad directly, and of course, it doesn't crash...

Similar Messages

  • I have numbers on my ipad and after the latest update I can't open a spreadsheet in it, a very important spreadsheet. I have rebooted a number of times but this does not seem to have fixed it can someone advise what I can do??

    I have an ipad and have just downloaded the lastest update, now I have a very very important spreadsheet that will not open!!!! other spreadsheets open fine but for some just this one will not open. I have rebooted the ipad and tried re-syncing but to no avail, can anyone HELP?????

    I had the same problem. I created an iCloud account and backed up my iPad to iCloud. I then went to www.iCloud.com, signed-in and then I was able to download my spread sheet data. At least I have my data.

  • I want help doing simple programing on numbers.

    I am too lazy to try to learn it on my own. My first project would be to take the simple employee schedule template under Business in Numbers and modify it to add some sales projections. Very simple stuff.  Is there a company tha

    Under Numbers there is a template under Business that is labled Employee Schedule.
    1.  Overall the schedule is pretty good but the time for clocking in an employee only goes to 11. We are a restaurant/brewery we need clock in times as late at 9 PM and clock outs as late as 3 AM. Need that expanded.
    2.  I would like that spreadsheet to flood another spreadsheet immediately below the schedule that takes total gross salaries for each day. Start with Sunday thru Saturday. So whichever employee works on Sun gets added to the Sunday total. It would look like this, first column has the days of the week ie sun, mon, tues etc next column shows the expected total salaries for the day from the Employee Schedule.
    3. Next column would have projected sales. This number would be filled in by the supervisor and he would guess sales volume for the day.
    4.  The next column would be the result of dividing total gross salaries for each day by the sales projection made by the supervisor. Top of the column would read salaries/sales.
    5.  There would also be a total for the week with salaries/sales as some days like Monday we will be over budget and on busy days like Friday, we would be under budget. As long as my supervisors balance to 20% I will be ok, at least for now:)
    This Tool would help the supervisor to be able to set up and change sheduled hours either up or down to meet our goal of salaries not to exceed 20% of projected sales.
    I can tell this is probably simple for someone that knows this stuff, but for me, hours of time and then never getting it right would be what would happen.
    Thanks so much for your suggestion and I hope you or someone takes this on.
    Ken Carson
    Nexus Brewery
    Albuquerque, NM
    Even as I write it,

  • Problem with very simple 2 threads java application

    Hi,
    As fa as i'm concerned this is a thread licecycle:
    1. thread created: it is dead.
    2. thread started: it is now alive.
    3. thread executes its run method: it is alive during this method.
    4. after thread finishes its run method: it is dead.
    No I have simple JUnit code:
    public void testThreads() throws Exception {
    WorkTest work = new WorkTest() {
    public void release() {
    // TODO Auto-generated method stub
    public void run() {
    for (int i=0;i<1000;i++){
    log.debug(i+":11111111111");
    //System.out.println(i+":11111111111");
    WorkTest work2 = new WorkTest() {
    public void release() {
    // TODO Auto-generated method stub
    public void run() {
    for (int i=0;i<1000;i++){
    log.debug(i+":22222222222");
    Thread workerThread = new Thread(work);
    Thread workerThread2 = new Thread(work2);
    workerThread.start();
    //workerThread.join();
    workerThread2.start();
    //workerThread2.join();
    And
    public interface WorkTest extends Runnable {
    public abstract void release();
    And that's it..
    On the console I see 999 iterations of both threads only if i uncomment
    //workerThread.join();
    //workerThread2.join();
    In other case I see random number of iterations - JUNIT finishes and Thread1 made 54 and Thread2 233 iterations - the numbers are different every time i start the JUnit..
    What I want? Not to wait until the first one finishes - I want them to start at the same time and they must FINISH their tasks...
    Please help me asap :(

    This is very simple... Look at your code:
    workerThread.start();
    workerThread.join();
    workerThread2.start();
    workerThread2.join();What are you doing here? You start the first thread, then you call join(), which waits until it finishes. Then after it's finished, you start the second thread and wait until it finishes. You should simply do this:
    workerThread.start();
    workerThread2.start();
    workerThread.join();
    workerThread2.join();I.e., you start the 2 threads and then you wait (first for the first one, then for the second one).

  • Very Simple Problem-- Need help in method selection process

    Hello,
    It's difficult to explain the background of the program I am making-- but I am stuck at a very simple problem, that I can only solve with a very long block of if statements:
    I have 3 possible numbers-- 1, 2, or 3.
    Imagine two numbers are already taken-- say 1 and 2. I want a variable to set itself to the number that's not taken (3).
    So, again: If two numbers were taken say 2 or 3-- I want the variable to be sent to the other one that isn't taken-- 1.
    Thank you for your help,
    Evan.

    Actually, I'll just tell you the context of the program-- here is what I have so far:
    This program is meant to simulate Monty Hall Problem:
    http://en.wikipedia.org/wiki/Monty_Hall_problem
    The program sets up an array of three possible values. Each one of those values represents a door with either a goat or a car behind it. It then randomly sets one of those values to 1 (in order to represent a car as per the Monty Hall problem), and 0's represent goats.
    The user, which is simulated by the program (does not involve actual interaction), chooses a door initially.
    The game show hosts then reveals a door that is not the users initial choice, but IS a goat ( an array value of 0).
    For example if the array was [0][0][1]
    The user could pick door one (array position 0). Which is a goat.
    The game show host then reveals a goat that is not the users choice-- which would be array position 1.
    After the game show host reveals the goat-- I want the user to always switch his decision to the only other remaining door that was not his first choice.
    Then I wanted the computer to test to see if his final choice is the one with a car. And to tally up the amount of times he got it right.
    --Sorry that was long winded:
    import TerminalIO.*;//imports TerminalIO package for system.out.println
    import java.util.*;//import java.util for random
    public class Monty_Problem
         int doors[]= {0,0,0};
         Random rand= new Random();
         double wins,totals=0;
         public void carAssignment()
              int car_door= rand.nextInt(3);
              doors[car_door]=1;
         public int judgesChoice(int judgeDoor, int initialChoice)
              if(judgeDoor != initialChoice && doors[judgeDoor]!=1)
                   return judgeDoor;
              else
                   return judgesChoice(rand.nextInt(3), initialChoice); //infinite loop right here that I cannot remedy.  I want the program to have the judge pick a location that is not occupied by a  '1' and is not the user's choice. 
         public void gamePlaySwitches()
              int initialChoice= rand.nextInt(3);
              int judgeDoor = 0;
              int secondChoice= 0;
              judgeDoor= judgesChoice(rand.nextInt(3), initialChoice);
              //This part is meant to have the user switch choices from his initial choice
                   // to the only other choice that hasn't been revealed by the judge. 
              while(secondChoice == initialChoice || secondChoice== judgeDoor)
                   secondChoice++;
              if(doors[secondChoice]==1)
                   wins++;
                   totals++;
              else
                   totals++;          
         public static void main(String [] args)//creates the main menu
              Monty_Problem a= new Monty_Problem();
              int games=0;
              while(games!=100)
                        a.carAssignment();
                        a.gamePlaySwitches();
                        games++;
              System.out.println(a.wins/a.totals);
    }Edited by: EvanD on Jan 11, 2008 4:17 PM

  • A very difficult challenge in Numbers

    Morning.
    I have a Numbers table, that calculates savings for future investments. But the investments take place surprisingly. That means, there are expenditures where no adequote savings has been done. In such case I want to diminish all the other savings proportionally.
    Example:
    For savings A monthly $100 are put aside. Savings in an amount of $2'000 has been done.
    For savings B monthly $200 are put aside. Savings in an amount of $1'000 has been done.
    For savings C monthly $50 are put aside. Savings in an amount of $400 has been done.
    In summa there are savings in an amount of $3'400. But if now occasionally  $1'000 of investments C must be done, the savings C are
    in Minus by $600.
    But savings can not be in Minus. Therefore the Minus must be absorbed by the savings A and B proportionally, e.g. A reduces to $1'600 and B reduces to $800.
    How can I do that in Numbers.app?
    IF (at least a cell is less than 0) THEN (set all these cells to 0 and sum the amounts lesser than 0) THEN (make the ratio of such amounts lesser the 0 to the sum of the positive savings) THEN (diminish all postitive savings by these ratio).
    How to achieve this by a valid Numbers formula?
    Kind regards, Friedrich

    yes - you could use zsh, but why not use builtin ksh (for support)?
    I keep all root history files different in discrete files so you don't accidentally have someone that tries to do a command recall on pattern matching - yielding different than expected results.
    it's very simple, but has the obvious caviats if you set any particular user's shell to something other than Bourne static linked -
    The syntax and variables can be changed to meet your own needs, near the top of my .profile I insert:
    if [ ! -z "$TERM" -a -t 0 ] ; then
    startdate=`date +%H%M%m%d%Y`
    HISTFILE=$HOME/history/.sh_history.$startdate.`who am i|awk '{print $1"." $2}'|tr '/' '_'` ; export HISTFILE
    fi
    just setup a history directory for each user and they'll log there whenever they have a term

  • Is there a way to have a chart float so that it is visible as I enter data on a very long spreadsheet?

    I am making a presentation to illustrate "normal distribution" (the bell curve).  As I enter random numbers into a very long spreadsheet, I want the viewers to see the chart take shape.  Is there a way to keep the chart visible as I move down the spreadsheet?
    Thank you,
    JMJKM

    How about this for a rough idea (as in I did not try to make it look pretty):
    Table 1 is a table of random numbers, as long a table as you want to use.
    Table 2 uses NORMDIST to create the data points for the bell curve. The number of random numbers to include is given in cell D2, for which a stepper or slider would be a good choice.  The average and standard deviation for the chosen data points are created as follows:
    average =AVERAGE(OFFSET(Table 1::A2,0,0,D2))
    stddev =STDEV(OFFSET(Table 1::A2,0,0,D2))
    Those two values are used in the NORMDIST functions in column B. I don't know if I used the function correctly but it sounds like you already know how to create a bell curve from the random numbers.
    Nothing moves around so there is no scrolling required. Place the chart in view and use the slider/stepper to include more data points.

  • What does 'kernel bug in process suhelperd' mean in very simple terms please

    what does 'kernel bug in process suhelperd' mean in very simple terms please

    Hi,
    Any that ends in a "d" tends to be a dameon process used by the System as a whole.
    As in launchd is the process that make sure all the Extensions and Kexts that run the OS are started.
    helper would refer to a specific thing  (the info you posted offers no reference to that and I don't know off the top of my head)
    The su would probably refer to the permissions this item has at that moment in time (su is normally a Terminal Instruction allowing temporary but high level access).
    Without more info about a possible link to an action within the OS or an app it would be hard to say if it is a real concern.
    It seems to refer to a conflict.  It could be that the item is not written for the current OS, is outdated via Upgrades for instance, or written in a way that is now Protected by the way the current OS works.
    Console Messages can be helpful when you can attribute them to specific events such as a Crash Log or the Action in an App matching a Time in the Log (you generally have to be watching).
    9:18 pm      Tuesday; January 6, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Secure a spreadsheet in numbers iOS

    Is there anyway to lock a spreadsheet in numbers on iPad, simple to do in excel but when I transfer it to numbers the pass code requirement is lost?

    Hello and thanks, but what I actually wonder is, not how you password protect a file, but how you lock it for input (until you unlock it). I can do that on my MacBook and when I open the file on my iPad it is indeed locked for input: tapping on it provoces an 'Unlock?' bubble tapping which unlocks the the file. But then: how do I relock it after some input into the file? I should have posed my question in a clearer manner, sorry. But thanks anyway!

  • My problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set sav

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/986549 /questions/986549]''
    my problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set save downloads to my e drive....but still firefox keeps saving them to my c drive....i have 4 internal hard drives in my rig....and have tried saving downloads to them all.......why this is happening i cant understand....i have tried lots of suggestions....and have re-installed firefox multiple times

    hello, there's a general regression in firefox 27 that won't allow files to download directly into a root drive. please try to create a subfolder (like ''E:\Downloads'') and set this as default location for downloads...
    also see [https://bugzilla.mozilla.org/show_bug.cgi?id=958899 bug #958899].

  • Problem With Deploying a very simple Servlet

    HELP REQUIRED:
    Hi,
    I'm including code of a very simple Servlet application (I shd not call it an application):
    index.html
    ==========
    <html><body bgcolor="#FFFFFF">
         <head>
         <title> Rajeev Asthana </title>
    <form action = "/HelloWorldApp/HelloWorld" method = "POST" >
    Please press Submit
    <input type = "submit" value = "Press Me!">
    </form>
    </body></html>
    HelloWorld.java
    ===============
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class HelloWorld extends HttpServlet {
         public void doPost(HttpServletRequest request,
                   HttpServletResponse response)
              throws ServletException, IOException {
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              out.println("<html><body bgcolor=\"#FFFFFF\">");
              out.println("<p>Hello World!</p>");
              out.println("</body></html>");
              out.close();
    web.xml
    ========
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" version="2.4" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>HelloWorldApp</display-name>
    <servlet>
    <display-name>HelloWorld</display-name>
    <servlet-name>HelloWorld</servlet-name>
    <servlet-class>HelloWorld</servlet-class>
    </servlet>
    </web-app>
    sun-web.xml
    ===========
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 8.0 Servlet 2.4//EN" "http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-0.dtd">
    <sun-web-app xmlns="http://java.sun.com/xml/ns/j2ee">
    <context-root>/HelloWorldApp</context-root>
    <session-config>
    <session-manager persistence-type="memory">
    <manager-properties/>
    <store-properties/>
    </session-manager>
    <session-properties/>
    <cookie-properties/>
    </session-config>
    <cache enabled="false" max-entries="4096" timeout-in-seconds="30">
    <default-helper/>
    </cache>
    <class-loader delegate="true"/>
    <jsp-config/>
    </sun-web-app>
    I have deployed it in following directory structure:
    C:\Sun\AppServer\domains\domain1\applications\j2ee-modules\HelloWorldApp\
    |
    |
    |               |               |               |
    |               |               |               |
    META-INF          WEB-INF          HelloWorld.java          index.html
                   |
                   |
              |          |          |          |
              |          |          |          |
         classes          sun-web.xml     web.xml          sun-j2ee-ri-project
         |
         |
         HelloWorld.class
    While generating HelloWorldApp.war (which is the war file for this app), I specifies /HelloWorldApp as context root (sun specific).
    Now, when I deployed it thru Admin Tool and then clicked on "Launch", it displays a page with :
    Please press Submit Press Me!
    But when I click the button "Press Me!", it says:
    "The requested resource (/HelloWorldApp/HelloWorld) is not available."
    What should I do to correct the problem?
    Thanks in advance.
         

    Yes, you need to add a servlet -mapping element and adjust your form to submit to the appropriate URL mapping.
    <servlet-mapping>
    <servlet-name>HelloWorldServlet</servlet-name>
    <url-pattern>/servlet/Hello</url-pattern>
    </servlet-mapping>

  • I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    I am going to buy a macbook pro for grade 12, and I need to know wheather I should get a macbook pro or a macbook pro retina. If someone could tell me (in a very simple way) which one is,better for me and why, I would be ever so apprreciative.

    Why do you need a expensive MacBook Pro?
    Your attending high school and unless everyone else is rich also your likely going to be a target by the more poorer students for theft or damage to the machine.
    You could keep it home, but if you need it for class then your exposed again.
    Also at that age your not very careful yet, a MacBook Pro is a expensive and easily damaged machine.
    Unless your made of money and so are others at your school, I would recommned a low profile, just does the job cheap Windows PC.
    If it dies, gets lost, stolen or damaged because of your inexperince handling senstivie electronics then it's no big deal.
    You can buy a Mac later on when your sure you have a need for it, currently there isn't much advantage of owning a Mac compared to a PC, they do just about the same things now, one just looks prettier than the other.
    Since 95% of the world uses Windows PC's your going to have to install Windows on the Mac in order to keep your skills up there or be unemployed, so it's a extra headache and expense.
    good luck

  • I updated my iPod touch 4g 64gb to iOS 6.1 and now it's been very slow, safari keeps crashing, apps being very slow and crashing ? Can anyone help ?

    I updated my iPod touch 4g 64gb to iOS 6.1 and now it's been very slow, safari keeps crashing, apps being very slow and crashing ? Can anyone help ?

    Next
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Go to Settings>Safari and Clear Cookies, Data and History
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • How to open Excel spreadsheet in Numbers.

    Hey Kids:
    I have trouble opening imported Excel spreadsheets in Numbers on my iMac.  I have Mountain Lion 10.8.2.  Previously I tried a demo of Office Mac that has expired.  When I try to open an Excel spreadsheet I get a message to buy Office Mac.  I've tried to put the demo application in the trash but I still can't open the Excel spreaddsheet and get a message that Excel is in the trash and can't open the spreadsheet. 
    HELP!

    In addition to what Niel said...
    In the Finder, click on an Excel file (.xls) to select it, press command-I to Get Info.
    In the Info window, expand the Open with...section.
    Click the pop-up menu bar in that section and choose Numbers '09.
    Click the Change All button below the menu.
    Repeat with a current version (.xlsx) file.
    Regards,
    Barry
    PS: Unless you have something vital that you're storing in the Trash, you might also want to Empty the Trash to get rid of the Excel trial that's expired.
    B

  • Very simple EJB 3.0 MDB but I get NullPointerException

    I tried to create a very simple EJB 3.0 Message Driven Bean in JDeveloper 10.1.3.2 as follows:
    Message Driven Bean Class:
    import javax.ejb.MessageDriven;
    import javax.jms.Message;
    import javax.jms.MessageListener;
    @MessageDriven(mappedName="MDBQueue")
    public class MDB implements MessageListener {
    public void onMessage(Message message) {
    System.out.println("Got message!");
    Application Client:
    import javax.annotation.Resource;
    import javax.jms.*;
    public class MDBAppClient {
    @Resource(mappedName="MDBQueueConnectionFactory")
    private static QueueConnectionFactory queueCF;
    @Resource(mappedName="MDBQueue")
    private static Queue mdbQueue;
    public static void main(String args[]) {
    try {
    QueueConnection queueCon = queueCF.createQueueConnection();
    QueueSession queueSession = queueCon.createQueueSession
    (false, Session.AUTO_ACKNOWLEDGE);
    QueueSender queueSender = queueSession.createSender(null);
    TextMessage msg = queueSession.createTextMessage("hello");
    queueSender.send(mdbQueue, msg);
    System.out.println("Sent message to MDB");
    queueCon.close();
    } catch(Exception e) {
    e.printStackTrace();
    But I get the following error:
    java.lang.NullPointerException
         at model.MDBAppClient.main(MDBAppClient.java:17)
    I read similar problem in the this thread:
    Re: message driven bean on ejb 3.0 does not work
    some one said that the version in ejb-jar.xml must be changed from 2.1 to 3.0
    but in this case there is no ejb-jar.xml.
    ( I have other cases with ejb-jar.xml file but I can't change the version in ejb-jar.xml)
    the version in web.xml is 2.4 but it not accept any value except 2.4 and an error occur when I tried to change it to 3.0
    please can you tell me why I get NullPointerException and how can I allow EJB 3.0 MDB and JMS to work in JDeveloper

    Note that you can't run MDBs in the embedded OC4J in JDeveloper - try deploying to a stand-alone install of OC4J and see if it works there.

Maybe you are looking for

  • Delete first page and move the second and the third one to the end of the document

    Hello Guys, First of all thanks for anyone that dedicated some time reading my post. I have the following "quest" for almost 1000 pdf files with different pages within. a) Delete the first page (I managed with the batch processing) b) Move page 2 and

  • Still getting error message 7.....

    I am current on my windows updates and running SP3. Everytime I DL and install then try to open itunes I get the error 7 telling to reinstall. I've tried everything I have read on here unless I missed something. I trid just quicktime and that tells m

  • Set default date in j1ia101

    Hi Gurus, I need to set the document date ( BUDAT field) in transaction J1IA101 as the current system date. This field is in the tab page 'Certification Dates' . Is this possible ? if so can you please tell me how. I tried for exits , but din find an

  • Where config partner function in stage of a route?

    Hi all, Please help me find where config partner function in stage of a route. When I run tr. vt03n, go to Stages, press on Departure point,  go to "Details on Stage" and go to Partner. Here I see Partn.Funct. Where config in SPRO еhese partner funct

  • How to upgrade core library

    i want to upgrade my core lib because certain tags like setPropertyActionListener is not present in the TLD. The contents for MANIFEST.MF are: Manifest-Version: 1.0 Class-Path: Can anyone guide me how to do that? Does upgrading to new core lib have a