Need help with numbers formula on ipad

How can i type this formula (or its equivalent) using an in Numbers  and not mac os?
=if(isblank(<source cell>), "", <What ever your formula is>)
Thanks for any suggestions!

I am trying to hide the zeroes in my destination cell when the formula cells are blank....can't be that hard I just can't figure itnou!!

Similar Messages

  • Need help with numbers doc

    I was working with numbers on the iPad where it closed unexpected. Now it will not open the doc, saying it can't open at this and it won't send to email or iworks. Is there any way I can get my doc back.

    only if you have it backed up to the itunes folder. I have gotten into the habit of "sending to iTunes" for backups. This moves a copy to another folder that iTunes sees. And if I lose my original working cpoy, I can "import from itunes" and at least have on ly lost limited. Funny that since I started doing that, I havent had a crash that corrupted a doc yet.
    Jason

  • Need help with a formula for an inventory spreadsheet

    I made an inventory spreadsheet. What I would like to know is a formula to track how many of one item I sold.
    This is what I have
    Cell D is # In Stock then Cell F is # Sold.
    As I sell one I take subtract it from cell D then I want it to Add one to Cell F. But when I add more inventory to cell D I don't want it to change cell F.
    I don't know lots about the formulas but learning as I do more and more with numbers 09.
    Thanks for your help

    It sounds like you need three columns.
    1. Number of items bought. This would be the column you add to when you purchase more of an item. It will equal the total number bought from day 1 to present.
    2. Number of items sold. You would increase this each time you sell an item. If you're selling just a few at a time you could do this with a stepper.
    3. Number of items in stock. Calculated by the formula "bought minus sold".
    This would not be a very comprehensive inventory system as it will not have a record of the transactions. A more comprehensive system would include data on the transactions (dates and numbers bought/sold) plus correction entries (dates and numbers) for when you do a physical inventory check and it doesn't add up as you expected.

  • Need help with MDX formula to sum months

    I was able to use Gary C's suggestion to sum daily data for 90 days with the following formula.
    SUM( TAIL( TUPLERANGE(
    ([FY_2006], [01/01]), ([Scenario].CurrentMember,
    [Time].CurrentMember) ), 90 ))
    This formula works great - even when crossing different years in the Scenario dimension.
    I'm now trying to sum the prior 3 months using a similar TupleRange command:
    SUM( TAIL( TUPLERANGE(
    ([FY_2006], [JAN]), ([Scenario].CurrentMember,
    [Time].CurrentMember) ), 3 ))
    I'm running into an issue due to additional parents in the time dimension. January and February of the current year are pulling data from the children of another parent in the Time dimension as opposed to Nov and Dec from prior year.
    My Time dimension is setup as follows:
    Time
    |
    |-Total Year
    | |-Jan
    | | |-01/01
    | | |-01/02...
    | |.
    | |-Feb... Dec (each month has days as children)
    |.
    |.
    |-QTDs
    | |- Various parents and shared children
    |.
    |-Weeks
    | |-FY08_Weeks
    | |.
    | |-FY09_Weeks
    Using the previous TupleRange command, when I retrieve data for Jan it retrieves data from the following members:
    Jan
    FY08_Weeks
    FY09_Weeks
    Any suggestions on how I can write the MDX formula so my 3 Month formula pulls in the correct members? (That is, it should only pull in members from the 'Total Year' parent.)

    In ASO architecture, if you want to aggregate these multiplied values you probably want to do the multiplication prior to loading so the sum of the products rolls up. Right now, you can't have the multiplication done in MDX and then have ASO aggregate. It's mostly a performance concern; you can do the multiplication and aggregation in one formula if you want.<BR><BR>The basic multiplication is just<BR> [Standard Material Per Unit] * [Units Sold]<BR><BR>To aggregate, you need to wrap in additional clauses. I've attached code here so you can see it with indenting- I believe that consistent indenting helps catch a lot of syntax errors.<BR><BR>You will also need to assign the formula to a new member (account or otherwise).<BR><BR>If you only want to see the values at level-0 and you don't want them aggregated, it's very easy:<BR><BR>iif (<BR> [Product].CurrentMember.[LEVEL_NUM] = 0,<BR> [Standard Material Per Unit] * [Units Sold],<BR> MISSING<BR>)<BR><BR><BR>

  • I need help with a formula for Numbers.

    I keep getting a syntax error when I type this in...
    =(B1/50)+(C1/12)-(MIN(D1, [4])+/5)
    it is a formula to calculate weight watches points. here it is as seen on a website.
    p=(c/50)+(f/12)-(min{r,4}/5)
    p=points
    c=calories
    f=fat grams
    r=dietary fiber
    I have the cells so that b1 = calories, c1 = fat grams, and d1 = dietary fiber.
    Can anyone point me in the right direction? I'm thinking its just a simple mistake that I am making. Thanks.

    toppu2020 wrote:
    =(B1/50)+(C1/12)-(MIN(D1, [4])+/5)
    the [4] item means nothing for Numbers.
    My guess is that the formula is trying to get the minimal value in the duo D1 and 4
    so you may try:
    =(B1/50)+(C1/12)-(MIN(D1,4)/5)
    Yvan KOENIG (from FRANCE lundi 28 juillet 2008 20:29:36)

  • HT1338 I need help with numbers. I try to open numbers and I get a message stating that I need an update. When I go to update apple say I am up to date, but I still can't open numbers. I keep going around and circles. Help

    I cannot open numbers. When I click to open the message says that, I need to update. When I go to updates is says I am updated. I keep going around and circles. Can anyone help?

    Look in your Applications folder for the new version.
    Remove the old icon from the Dock and drag down the new one for ease of use.

  • Need help with numbers

    I am writing a program that calculates different entries and then sends them to another script. The problem is that the number must be in the format xx.xx (cannot be changed). An example that is not working for me is 10 + 8.50 = 10.5 and I needs to equal 10.50.
    Can someone help me with this?

    Here is the code
    function
    PPWindow(Item_Name,Item_No,Amount,Shipping,Ship2,Handli
    g)
    var Result;
    var Don;
    Don=document.forms[0].Donate.value; //Added to make
    Donate a Interger (not really sure about this)
    if (Don == "" || Don == "0") {
    alert('Please enter a amount');
    else {
    Result=Don+Amount; //Adds the Donation Amount to the
    origianl Amount
    DecimalFormat df = new DecimalFormat("0.00");
    (df.format(Result));
    document.writeln("Don is " + Don); //Entered to show
    what Don is, will be deleted once working
    document.writeln("Result is " + Result); //Entered to
    show what Result is, will be deleted once working
    window.open // This is where I open a page and send
    the results
    }This is javascript code, not Java! The two are completely different programming languages and, to my knowledge, are not interchangeable.

  • I need help with a formula.

    I am very new to using numbers or excel so I am sorry if this is beginners work, but I can not seem to figure out how to get a formula to calculate two currency cells and give the answer as a percentage or number(minus dollar sign) The formula takes two partners monthly draws and breaks them down as a percentage of the draw as a whole. If the monthly partner draw total was $10,000, the cell breaks down their split as xx/yy. Here is an example of the two cells.
    B9= $8,000.00
    B10=$2,000.00
    Here is the formula. =B9/(B10+B9)&"/"&B10/(B10+B9)
    I am trying to get the cell to givve me the results of 80/20 and I am getting $0.80/$0.20 I've tried formatting all that I know how, but I cannot figure out which. I am sure the answer is simple. Thank you for your help.

    This expression rounds the results to two decimal place:
    =ROUND(100*(VALUE(C9)/VALUE((C10)+VALUE(C9))),2)&"/"&ROUND(100*(VALUE(C10)/(VALU E(C9)+VALUE(C10 ))),2)
    This expression rounds the results to whole numbers:
    =ROUND(100*(VALUE(C9)/VALUE((C10)+VALUE(C9))),0)&"/"&ROUND(100*(VALUE(C10)/(VALU E(C9)+VALUE(C10 ))),0)

  • Need help with blue tooth on ipad

    Hello everyone,
    I am having problems with my blue tooth. I cannot connect to an iphone plus a logitech bluetooth wireless speaker.
    PLEASE HELP:(

    How Bluetooth Works
    http://electronics.howstuffworks.com/bluetooth.htm
    iOS: Supported Bluetooth profiles
    http://support.apple.com/kb/ht3647
    iOS: How to troubleshoot Bluetooth connections
    http://support.apple.com/kb/TS4562
    You can connect multiple bluetooth devices, like a keyboard and headphones. However, not two that use audio. That's because the audio channel over A2DP can only play to one device at a time.  Its a limitation of the audio feed via bluetooth - there is no split or simultaneous feed to multiple devices.  A2DP is a uni-directional 2 channel (ie. stereo) audio feed only.
    iOS: Understanding Personal Hotspot
    http://support.apple.com/kb/HT4517
    Use Bluetooth to tether your iPhone, iPod touch, or iPad
    http://www.macworld.com/article/1159258/bluetooth_tethering.html
    How to Connect an iPad to an iPhone Via Bluetooth Tethering
    http://techtips.salon.com/connect-ipad-iphone-via-bluetooth-tethering-25472.html
     Cheers, Tom

  • Need help with website appearance on ipad

    My website is finally looking ok on all the various pc browsers and I figured out a workaround so that the menubar works properly on the Ipad. The only thing I'm unhappy with is that the page title is crunched up at the top of the page on the ipad.  It's supposed to be centered and that's how it looks everywhere else.  How do I fix the problem?  Website is nhcstar.org

    If you have CS6, you could use Fluid Grid Layouts to create a responsive layout for mobiles, tablets and desktops.
    Live Example:
    http://alt-web.com/FluidGrid/Fluid.html
    CS6 Fluid Grid Layouts (6 min video)
    http://tv.adobe.com/watch/digital-design-cs6/creating-adaptive-designs -using-fluid-grid-layouts-in-dreamweaver-cs6/
    CS6 Fluid Grid layouts (17 min video)
    http://tv.adobe.com/watch/learn-dreamweaver-cs6/using-fluid-grid-layouts/
    Step-by-Step tutorial -- Building Fluid Grid Layouts in DW CS6
    http://www.adobe.com/inspire/2012/08/fluid-grid-layouts-dreamweaver-cs 6.html
    Nancy O.

  • Need help with numbers adding instantly in fillable form

    I am doing a fillable form in acrobat where certain text boxes are being added to one another based on the users answers. It is basically a checklist for life insurance. Only problem I am having is certain numbers from equations aren't being added to my total instantly. You have to click on another box before it will do the addition. Other boxes that don't use a calculation add in instantly. Any idea how to fix or get around this???? Thanks for any assistance you can provide!

    Thanks for the reply! I was able to reset the field calculation order
    but have one field that is not populating right away and I have
    changed it's order everywhere?

  • Siri, sounds, video, alarm not working. Need help with backing up my iPad so I can do a factory reset....need help doing that also.

    Siri,sounds,alarm, videos not working. How do I back up my iPad and how do I do a factory reset?

    Try this:
    Make sure IOS is updated to latest version
    (How to update your iOS device
    http://support.apple.com/kb/HT4623)
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings  (or for network connection issues 'reset network settings').
    (no media or data will be deleted from the device, this will only take a minute).
    If that doesn't work then backup and then restore the device as new first (to isolate cause of the issue). Then from backup if necessary.
    How to back up and restore (iCloud and iTunes) 
    http://support.apple.com/kb/HT1766

  • I need help with Email on the Ipad.  How to make folders, organize etc.???

    v
    Workshop Confirmation
    Back to Wireless Workshops
    You have registered for   Apple iPhone 4S Workshop.
    A confirmation message will be sent to your email address. We look forward to seeing you soon!
    Date:  Saturday, January 14, 2012
    Start Time:  8:30 AM - 9:30 AM
    Store:  4500 16th St SouthPark Mall Moline, IL, 61265
                (309) 797-7990
                See on map | Print Confirmation

    https://bugreport.apple.com/problem/viewproblem

  • I need help with the iPad Remote app to connect to apple TV 2

    I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something 

    Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
     Cheers, Tom

  • Hi  I really need help with re-activating my little sisters iPad

    Hi
    I really need help with re-activating my little sisters iPad, i already set it up a couple of months ago when i bought it,but unfortunately she disabled it by forgetting her password. i followed the necessary steps to reset it again, when the iPad came back on and we put the apple id and password it kept refusing it, i even reset the password, which sent the verification the email account,  i followed the steps to reset, But then i noticed the message at the top of the activate screen with the message “this iPad is currently linked to the following apple ID _______ with a a few hidden dashes, but at the end of the email it says co.uk, but the problem is the email ends with .com. I have no idea how this happened,  and its driving me insane and my little sister only used her iPad for a month before this happened. for some reason the the iPad email address ends in co.uk when the actual email ends with .com
    I also set up the software find my ipad
    Please help

    You will probably have to contact Apple to see if they can help.
    Contact Us

Maybe you are looking for

  • Album headers (A, B, C, D etc.) no longer appear in iPod.

    When scrolling through artists, there are letter headers (A, B, C etc.). These letter headers used to appear under albums as well when I clicked on an artist with a large number of albums, no longer do they appear. I was fiddling with holding down th

  • In-browser editing not working enabled

    I am attempting to give access to customer in-browsing capabilities for basic updates to website content.  SIte is BC hosted and built with Muse.  In-browser editing in site properties and even in the admin details.  If not possible, what options wil

  • Insert Error

    Hi, I keep getting this error on an Insert statement: [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. I know this usually happens because the query is using a reserved w

  • Premature Garbage Collection of Remote Objects

    I have a problem with distributed garbage collection and RMI. In CSPoker we try to support RMI for client-server communication. The client looks up the server through the registry, calls the login method and receives back a Remote Object reference ca

  • Centralized exception handling

    http://www.artima.com/intv/handcuffs2.html The above is a text concerning the C# language. It contains some viewpoints concerning exceptions, and I want to lift one concept out of the text: Centralized exception handling I want to implement some kind