+ Reply to Thread
Results 1 to 5 of 5

Remain Blank until all information is gathered

  1. #1
    Forum Contributor
    Join Date
    08-24-2011
    Location
    Van Wert, Ohio
    MS-Off Ver
    Excel 2010, 2000
    Posts
    104

    Remain Blank until all information is gathered

    This is my formula in cell C24

    =((C23+C16+C9)/12)*52

    Cells C16 and C9 have already gathered their information.

    Cell C23 is currently showing "0"

    I want Cell C24 to remain Blank until C23 has a real number in it

    Suggestions

    Thanks in advance
    Attached Files Attached Files
    Last edited by gocolonel77; 02-21-2013 at 01:09 AM. Reason: added attachment

  2. #2
    Registered User
    Join Date
    01-30-2013
    Location
    Hobart, TAS
    MS-Off Ver
    Office 2003, XL2007
    Posts
    46

    Re: Remain Blank until all information is gathered

    Try this
    C24 =IF(C23<>0,((C23+C16+C9)/12)*52,"")

  3. #3
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Remain Blank until all information is gathered

    hi gocolonel77. when you say real number, do you mean above 0? or non-blank? 0 & negatives are real numbers to others. for it all to be above 0, try:
    =IF(AND(C9>0,C16>0,C23>0),(C23+C16+C9)/12*52,"")

    for it to be non-blank:
    =IF(AND(C9<>"",C16<>"",C23<>""),(C23+C16+C9)/12*52,"")

    if cells between C9:C23 only consists of these 3 numbers, then consider COUNTIF or COUNTBLANK

    i'm assuming you want all 3 cells to be filled. otherwise, the solution above would suffice

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  4. #4
    Forum Contributor
    Join Date
    08-24-2011
    Location
    Van Wert, Ohio
    MS-Off Ver
    Excel 2010, 2000
    Posts
    104

    Re: Remain Blank until all information is gathered

    Hey thanks and your questions are valid. I DO need it to include negative numbers. Anything number above and below zero.

    Hope this helps

    Thanks

    Quote Originally Posted by benishiryo View Post
    hi gocolonel77. when you say real number, do you mean above 0? or non-blank? 0 & negatives are real numbers to others. for it all to be above 0, try:
    =IF(AND(C9>0,C16>0,C23>0),(C23+C16+C9)/12*52,"")

    for it to be non-blank:
    =IF(AND(C9<>"",C16<>"",C23<>""),(C23+C16+C9)/12*52,"")

    if cells between C9:C23 only consists of these 3 numbers, then consider COUNTIF or COUNTBLANK

    i'm assuming you want all 3 cells to be filled. otherwise, the solution above would suffice

  5. #5
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Remain Blank until all information is gathered

    then try:
    =IF(AND(C9<>0,C16<>0,C23<>0),(C23+C16+C9)/12*52,"")

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1