+ Reply to Thread
Results 1 to 9 of 9

Return Blank Cel Instead of the word FALSE

Hybrid View

  1. #1
    Registered User
    Join Date
    01-29-2014
    Location
    san diego
    MS-Off Ver
    Excel 2010
    Posts
    47

    Return Blank Cel Instead of the word FALSE

    Hello,

    I need a blank cell instead of a "FALSE". here's my formula:

    =IF(A1>=7/31/8,IF(B1="y",A1)," ") (basically, if the date in A1 is equal or greater than 7/31/08, and if B1 is "yes" then enter info from from A1) (A is a date if that matters)
    Thank you...
    Attached Files Attached Files
    Last edited by islandeeya; 01-28-2019 at 11:37 AM. Reason: Adding Excel sample

  2. #2
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Return Blank Cel Instead of the word FALSE

    Excel is not recognising as a date. it is dividing 7 by 31 and then by 8. Here is one way to fix it:

    =IF(A1>=DATE(2008,7,31),IF(B1="y",A1)," ")
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  3. #3
    Registered User
    Join Date
    01-29-2014
    Location
    san diego
    MS-Off Ver
    Excel 2010
    Posts
    47

    Re: Return Blank Cel Instead of the word FALSE

    Thank you, that worked for the cells that have a formula in them, but not the cells that are blank. my actual formula is:

    =IF(C6>=DATE(2008,7,31),IF(D284="y",MONTH(d284),"")) (the answer is going in E6)

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Return Blank Cel Instead of the word FALSE

    IF(D284="y",MONTH(d284)
    ... if D284 =Y, then return the month of D284??? That does not make sense.

    Will you please attach a SMALL sample Excel workbook (10-20 rows of data is usually enough)? Unfortunately the attachment icon doesn't work at the moment. So, to attach an Excel file you have to do the following: Just before posting, scroll down to Go Advanced and then scroll down to Manage Attachments. Now follow the instructions at the top of that screen.

  5. #5
    Registered User
    Join Date
    06-29-2011
    Location
    Fort Lauderdale
    MS-Off Ver
    Excel 2018
    Posts
    24

    Re: Return Blank Cel Instead of the word FALSE

    Let's just stick to the same row, part of the confusion is you introduced D284 when we are on row 6. This code shows you what you are asking for:

    =IF(AND(C6>=DATE(2008,7,31),B6="y"),A6,"")
    B6 can be upper or lower case letter Y, either will work fine with the code above.

    If you are unsure of the data quality, (e.g. "Y", "Yes", and leading or trailing spaces) you can use this type of code:

    =IF(AND(C6>=DATE(2008,7,31),LEFT(TRIM(B6),1)="y"),A6,"")
    I think this answers your question.

  6. #6
    Registered User
    Join Date
    01-29-2014
    Location
    san diego
    MS-Off Ver
    Excel 2010
    Posts
    47

    Re: Return Blank Cel Instead of the word FALSE

    I apologize for the confusion in cell number typo. your example worked and removed the "FLASE", but I also need my date to show in the numbered month form. (I've attached a sample...)

  7. #7
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Return Blank Cel Instead of the word FALSE

    Change e4 to date format and copy the formula down the rest of the way.....
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    01-29-2014
    Location
    san diego
    MS-Off Ver
    Excel 2010
    Posts
    47

    Re: Return Blank Cel Instead of the word FALSE

    That worked, Than you!

  9. #9
    Registered User
    Join Date
    01-29-2014
    Location
    san diego
    MS-Off Ver
    Excel 2010
    Posts
    47

    Re: Return Blank Cel Instead of the word FALSE

    Thank you!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Return False for blank cells with formulas
    By Perk1961 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-29-2015, 02:19 AM
  2. Return Blank Cell if value is false
    By Cremorneguy in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 09-02-2014, 11:44 PM
  3. [SOLVED] Nested IF return eitheri H, A or blank instead of False
    By neetal in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 07-02-2014, 11:49 AM
  4. [SOLVED] return the word false
    By tsmor in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 04-26-2013, 02:16 PM
  5. Conditional Formatting / FALSE return to BLANK
    By LDVDG in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-01-2013, 04:42 PM
  6. [SOLVED] Return Blank instead of False
    By kaurka in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-05-2012, 03:53 PM
  7. Replies: 6
    Last Post: 10-06-2011, 12:32 AM

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