How do I add cells, but only if certain criteria are met first in other cells?

I have a little problem in working this out, I can't! I can add cells & alike, but more complex working are an unknown to me.
Any help here would be greatly appreciated.
I've three cells in a row C4 with 5 in, D4 with 3 in & E4 with 1 in. I'd like to add these numbers together into a cell below E6, which is =SUM(C4:E4) which will make 9 in cell E6.
I've also three cells in a row below C4 - E4 which are C5, D5 & E5 which will only ever have ether 0 or 1 inputted into them. All these cells will only ever have data inputted into them from left to right i.e. Column C first, then Column D & lastly Column E.
What I’d like for the cells to do, is only add cells C4 - E4 from left to right, once a cell below (C5 - E5) has had a 1 inputted into it & then continue to add the cells there after normally.
Examples:
Like above if C4 had 5, D4 had 3 & E4 had 1, & the all the cells below (C5 - E5) had 1 in them, then E6 = 9.
Again,  if C4 had 5, D4 had 3 & E4 had 1, but C5 had 0, D5 had 1 & E5 had 1, then E6 = 4.
Again if cells C4 - E4 are the same, but C5 had 0, D5 had 1 & E5 had 0, then E6 still = 4.
In the same aspect as above, if C4 - E4 are the same, but C5 had 1, D5 & E5 had 0, then E6 = 9.
If cells C4 - E4 are the same, but C5 - E5 all had 0, then E6 = 0.
I hope this is clear, & all comments are welcome.
Many Thanks.

Big_Botts wrote:
Hi Barry,
Just a thought, Wayne is helping me on another question I asked, do you think you could help?
https://discussions.apple.com/message/17950789#17950789
Wayne's got that one well in hand. Nothing to add there, except that you'll find the details about conditional formatting in the Numbers '09 User Guide, which can be downloaded via the Help menu in Numbers. While you're there, grab the iWork Formulas and Functions User Guide as well. Both are quite useful.
Regards,
Barry
Regards,
Barry

Similar Messages

  • RBATP - is it possible to activate them only if certain conditions are met?

    Hello APO - RBATP experts!
    I have a question that I hope you can help me with:
    Is it possible to have rules that become active only in certain circumstances, for example, if the RDD of the sales order is today or tomorrow?
    I have limited knowledge on the topic; so your help will be greatly appreciated.
    This is my scenario:
    A sales order is raised in plant A for Material X, if there isn't enought inventory of Mat. X, there will be a rule to look for inventory in plant B. If stock is found in plant B; then an ATP Tree structure is created, which is then turned into a purch req; and then into an STO from Plant B to Plant A. Then the shipment is sent to the customer from Plant A. This is good, however, this is not what we want for sales orders that are placed with too much time in advance; because by the time the sales order needs to be delivered, the inventory may be available in Plant A, and those requirements are meaningless at that point. Any ideas of how to handle this? Thanks in advance!

    Hi DB:
    Here are my answers:
    If the requirement is placed upon B, how is it possible to later have excess inventory in A? 
    If the sales order was placed let's say 7 weeks in advance; during that time the whse could have received inventory from the plant.
    This is mainly why I need to find a way for the rule to do the substitution and create the requirement in B, only if RDD is very close to today's date.
    Is there a reason why wouldn't ship directly from B to the customer? (instead of first moving the stock to A) 
    Yes there is, the requirement of the business is that any sales order raised in A, must be shipped from A; but stock must be found in alternate locations to satisfy the order. If stock is not found, then the order is cut and shipped.
    Is A a plant, depot, or both?
    Is B a plant, depot, or both?
    How is 'B' normally supplied? 
    Are you using MLATP?  CTP?
    Both are depots; and are supplied from different  manufacturing plants across the country.
    We are using MLATP.
    Thanks again for your input!

  • How can I add a custom attribute to a catalog area? (CRM Isa Sales)

    Gents,
    How can I add a custom attribute to a catalog area? (CRM Isa Sales)
    Actually I would like to use the Catalog Area Type (maintained in trx COMM_PCAT_ADM on Catalog Area Header level). This field doesn't seem to be available in J2EE webshop. (The field documentation says it is for documentation purposes only so I don't expect it to be transferred).
    As this field is not readily available, I would like to add is as an attribute to the Catalog Area. BADI's PCAT_IMS_FEED_ATT and PCAT_IMS_FEED_VAL seem to indicate that it should be possible to add additional fields not only on product level, but also on Area level:
    Example implementation code:
    method IF_EX_PCAT_IMS_FEED_ATT~READ_NEW_FIELDS.
    * Example, how to add new attributes to a indexcategory
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' carries the attributetype ('S'tring, 'I'ntegar or
    * 'F'loat)
    * Structure 'IS_OBJECTS' carries actuall identifiers
      data: ls_fields        type comt_pcat_ims_feed_ux.
      case iv_level.
        when 'C'.                        "Category Level
    *     no new field
        when 'P'.                        "Product Level
          ls_fields-field = 'CUSTOMER_EXIT_FIELD'.
          ls_Fields-value = 'S'.
          append ls_fields to ct_fields.
    *     exproduct fields
          ls_fields-field = 'REMAN_ABL'.
          APPEND ls_fields TO ct_fields.
          ls_fields-field = 'EXCH_BUS'.
          APPEND ls_fields TO ct_fields.
      endcase.
    endmethod.
    However, when I create an implementation and add some code in the when 'C' part, the attributes do not seem to get transferred. (I've checked in the debug mode of the developer studio).
    - My example code:
    METHOD if_ex_pcat_ims_feed_att~read_new_fields.
    * Possible levels are 'C'ategory and 'P'roduct.
    * Field 'VALUE' contains the attributetype
    * ('S'tring, 'I'ntegar or * 'F'loat)
      DATA:
      ls_fields LIKE LINE OF ct_fields.
      CASE iv_level.
        WHEN 'C'.                        "Category Level
          ls_fields-value = 'S'.
          ls_fields-field = 'ZTEST'.
           APPEND ls_fields TO ct_fields.
        WHEN 'P'.                        "Product Level
      ENDCASE.
    ENDMETHOD.
    and:
    METHOD if_ex_pcat_ims_feed_val~read_new_fields.
      CASE iv_level.
        WHEN 'C'.
         ls_fields-field = 'ZTEST'.
         ls_Fields-value = 'Value 1'.
         append ls_fields to ct_fields.
        WHEN 'P'.
      ENDCASE.
    ENDMETHOD.
    In the ABAP debugger, I can see that my code is touched during initial and delta replications, however, after replication, the fields do not show up in the Java debugger.
    Any ideas?
    regards,
    Wilco Menge

    Hi,
    How can I customize the /bin/wcmcommand or how can I make use of [2] to create a custom WCMCommand?
    I think the "formUrl" is to post those input value to the jcr repository?
    var createDialog = {
            "jcr:primaryType": "cq:Dialog",
            "id": CQ.Util.createId("cq-createdialog"),
            "title":CQ.I18n.getMessage("Create Page"),
            "formUrl": CQ.shared.HTTP.externalize("/bin/wcmcommand"),
            "params": {
                "cmd":"createPage",
                "_charset_":"utf-8"
    I have added a field called "starred"
    Moreover, when I using the firebug to trace the post command, I can see that the starred value is posted also.
    :status
    browser
    _charset_
    utf-8
    cmd
    createPage
    label
    b
    parentPath
    /content/keyword_elaboration
    starred
    c
    template
    /libs/collab/commons/templates/form
    title
    a
    Source
    cmd=createPage&_charset_=utf-8&%3Astatus=browser&parentPath=%2Fcontent%2Fkeyword_elaboration&title=a&label=b&starred=c&template=%2Flibs%2Fcollab%2Fcommons%2Ftemplates%2Fform
    However, when I go to the crxde to view the node's attribute, the properity starred is not created
    Are there anything I did wrong or missing?
    Thanks.
    Message was edited by: aslkit

  • The message I get is: Time Machine could not complete the backup. This backup is too large for the backup disk. The backup requires 111.27 GB but only 42.1 GB are available.

    I have a problem with my Time Capsule.  The message I get is: Time Machine could not complete the backup. This backup is too large for the backup disk. The backup requires 111.27 GB but only 42.1 GB are available. As a result, my backups are no longer running. My umderstanding was that the Time Capsule would automatically delete old backups to make space. Can anyone help me figure out how to get my backups to run again?

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message. Clear the text field and scroll back in the log to that time. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them (command-C) to the Clipboard. Paste (command-V) into a reply to this message.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • Time Machine Error.  Backup is too large for the backup disk.  Backup requires 289.28 GB but only 177.01 GB are available.

    My Mac has not been backing up for some time.  Tried Apple Support, but couldn't figure out problem.
    Receive the following error...
    Time Machine Error
    This backup is too large for the backup disk. The backup requires 289.28 GB but only 177.03 GB are available.

    See #C4 in Time Machine - Troubleshooting.
    If that doesn't clarify the situation, post back with:
    How much data is on your internal HD (and any others being backed-up)?
    How large is your Time Capsule?
    Is there anything else on the TC besides these backups?  If so, what and how large?

  • Numbers 09 not working - I can open the program but only a few files are available, missing blank, checklist and many others. e.g  when I click on a file I get this error: The document "nmbtemplate is invalid. The index.xml file is missing. help.

    Please let me know what I can do to get my Numbers (iWork 09) working properly again.
    Here is what is going on:
    Numbers in iWork 09 not working can't access Blank, Checklist and many other files within Numbers.   I can open the program but only a few files are available. When I click on the file (which also has no icon just the name of the file) this warning appears:
    The document "Blank.nmbtemplate" is invalid.  The index.xml file is missing.
    I recently had to get a new hard drive installed and had the system upgraded and more memory put in by a Mac certified specialist recommended to me from the Apple store in Northbrook because this was the 3rd time my drive went bad but this time it was to old (I got the IMAC- in 2007) and the Apple store could no longer work on it this time so they recommended a few places that had certified Mac specialists.  Since then Numbers is not working right.
    I'm sure it's something simple to fix, but I've tried re installing it and that didn't work.  Appreciate any help.
    Thanks
    AppMare

    There is one way its getting fixed. Once I update my Adobe Illustrator CC to Adobe Illustrator CC 2014 it is further allowing me to go into the system folder and allocate the font to the file so that it can replace it. My only concern now is that our MAC partners who will receive these files back from us have Adobe CS6. We will down save it to CS6 but I hope they won't experience any font issues because of us using CC 2014? Any light you can shed on this?

  • HT1212 I followed the steps on how to enable my iphone but there still no response. Do you have other suggestions on how I can enable it? Thank you!

    I followed the steps on how to enable my iphone but there still no response. Do you have other suggestions on how I can enable it? Thank you!

    Hi Stefanie Burger,
    Thanks for using Apple Support Communities.
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Hope this helps,
    Mario

  • Is this true? "iTunes 7 will do CD-Text, but only with certain models of CD

    My friend told me the following. Is this true?
    "iTunes 7 will do CD-Text, but only with certain models of CD burners."

    Probably not - although this comes only from personal experiance and not any technical knowlage. I always purchase cd's based on conviniance and not brand. Also spend my life between Europe and North America and have never encontered any cd that would not work - aside occasional lemons.
    Hope this helps - just remember this is an experiance based reply.

  • I am trying to subscribe so that I can convert PDF to word. Get so far but only options for address are in USA, I live in England

    I am trying to subscribe so that I can convert PDF to word. Get so far but only options for address are in USA, I live in England

    Hi golfgerald,
    I'm sorry that you're having trouble subscribing. Please take a look in the lower-left corner of the Adobe.com website. Do you see "United Kingdom" listed as the region? If not, please click Change Region, and then choose United Kingdom.
    Did that do the trick?
    Best,
    Sara

  • 1. How do I add CSS effects to a certain element?

    How do I add CSS effects to a certain element?
    There are several effects (like customized hover effects) that I could with CSS. I want to know how do I add the CSS effects for a certain element/object from within Edge animate.

    The way to add css in general is
    sym.$('element').css({
    'Property':'value',
    'Property':'value',
    'Property':'value'

  • HT201250 This backup is too large for the backup disk. The backup requires 1.42 TB but only 998.49 GB are available.

    I am getting the error ¨This backup is too large for the backup disk. The backup requires 1.42 TB but only 998.49 GB are available¨ when I try to do a time machine backup.  I have a Retina Macbook Pro and am only using 250 GB on the internal drive.  My 1TB external drive that I am trying to use has been complete reformated (case sensitive journaled) and therefore completely empty.  Any ideas why time machine is saying my drive has 1.14 TB when its capacity is no where near that? 

    Well, at this point I might recommend that you reboot your MacBook Pro while simultaneously holding down the Command - R keys and booting into the Lion Recovery Partition.  There I would enter the "Disk Uility", highlight your Mac HD in the left hand column to select it and run "Repair Disk", and then run "Repair Permissions" twice.  They may resolve the hard drive's confusion in Time Machine.
    Hope this helps

  • Re Time Capsule: I get this message:This backup is too large for the backup disk. The backup requires 1.38 TB but only 327.08 GB are available. Any suggestions? Please.

    CAn anyone make some suggestions regarding this message. 'This backup is too large for the backup disk. The backup requires 1.38 TB but only 327.08 GB are available.'

    See #C4 in this terrific document provided by expert Pondini.
    http://web.me.com/pondini/Time_Machine/Troubleshooting.html

  • I Recently bought a series of 22 episodes but only 3 downloaded. where are the rest?

    i recently bought a set of 22 episodes of a series but only 3 downloaded where are the rest?

    i recently bought a set of 22 episodes of a series but only 3 downloaded where are the rest?

  • Display a particular column only when certain criteria is satisfied

    Hi Experts,
    I have a requirement from a user with which i am struggling. The person wants to see an entire report but see a particular column only when certain criteria is satisfied. I am not talking about filtering the entire Query but just a certain column.
    Ex.
    Data in Cube
    Req | Candidate | Candidate Status | Grade
    1 | C01 | Draft | A
    1 | C02 | Withdrawn | B
    2 | C03 | Hired | B
    3 | C04 | In Process | A
    3 | C05 | Hired | C
    Result in Query
    Req | Candidate | Grade
    1 | <Blank> | A
    1 | <blank> | B
    2 | C03 | B
    3 | <blank> | A
    3 | C05 | C
    Basically, user wants to see candidate information only when Status is Hired. Rest of the time, it should be blank.
    Is this possible ?

    Hi,
    From My view this is not possible in Query.
    You can do this in Backend or
    You can create 2 Query
    1.Query whith candidate name who is hired.
    2.Query without candidate name whose status is not hired.
    3.Merge these these report using Excel Macro.
    Thanks and Regads,
    MuraliManohar

  • How do I add a "members only" function to my site?

    Want to add a members only site to my web site, how would i
    configure this in dreamweaver?
    I'm thinking I would create what was to be inside inside then
    somehow configure the link on the main web page to login somehow?
    Any help / pointers are appreciated. Can't seem to get it
    from the manuals.
    thanx

    Hello,
    The easiest way is to just put the pages in a password
    protected directory
    which you can set up in your hosting account. When you click
    a link to one
    of these pages, you'll get a "Enter Username and Password"
    dialog box.
    Just check your hosting account's control panel on your
    host's website or
    contact them.
    If you want a login form on your web page you'll need to look
    into using a
    Server Side Language like PHP, ASP or CF and possibly using a
    database if
    members require unique passwords. Just find out what SSL your
    hosting plan
    supports. It's not too difficult to set up using DW and there
    are many
    tutorials.
    Take care,
    Tim
    "JLOU2" <[email protected]> wrote in message
    news:fo3cjc$cuk$[email protected]..
    > Want to add a members only site to my web site, how
    would i configure this
    > in
    > dreamweaver? I'm thinking I would create what was to be
    inside inside
    > then
    > somehow configure the link on the main web page to login
    somehow? Any
    > help /
    > pointers are appreciated. Can't seem to get it from the
    manuals. thanx
    >

Maybe you are looking for

  • Software RAID Failure - my experience and solution

    I just wanted to share this information with the iCloud community. I searched a bit and did not find much information that was useful with regard to my software RAID issue. I have 27 inch Mid 2011 iMac with SSD and Hard drive which has been great. I

  • Problem in message Mapping SAP PI 7.1

    Hi Experts, I have a problem in my Message Mapping, Design: [Design|http://www.life-4-music.de/prob.jpg] Messagemapping: [MappingTest|http://www.life-4-music.de/probII.jpg] The Problem is, that ElementC from SourceMessage occours "0 to n" times in El

  • Foreign currency transfer in COPA

    Hello friends, I have a question on foreign currency in COPA document when I do the sales order settlement. I have a sales order where I mentioned that document currency is EUR and maintained exchange rate. My Operating, controlling and company code

  • Create a linked list

    Hi guys! I read the manual of java 2 and says that is not that pointers don't exist, they do exist but they are not explicit as they are in C languagge. So in need to create a circular linked list how can I do this? The instructions of the manual are

  • MSI H55m-E21 OC issues

    Hey guys, recently purchased a MSI H55M-E21 mobo. Got everything setup and I am having a few issues with the BIOS. First, RAM is not listed at 1600Mhz which was listed on the site as being supported while OC. Most of the settings for this option have