+ Reply to Thread
Results 1 to 6 of 6

Formula to say "yes" if Column I has text, to say "no" if column I is blank

  1. #1
    Registered User
    Join Date
    06-18-2013
    Location
    Minneapolis, MN
    MS-Off Ver
    Excel 2013
    Posts
    81

    Formula to say "yes" if Column I has text, to say "no" if column I is blank

    What formula can I use for a column to generate "yes" if Column [I] has text, and to generate "no" if column [I] is blank

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,317

    Re: Formula to say "yes" if Column I has text, to say "no" if column I is blank

    Maybe...

    =IF(ISTEXT(I1),"yes",IF(ISBLANK(I1),"no",""))
    HTH
    Regards, Jeff

  3. #3
    Registered User
    Join Date
    06-18-2013
    Location
    Minneapolis, MN
    MS-Off Ver
    Excel 2013
    Posts
    81

    Re: Formula to say "yes" if Column I has text, to say "no" if column I is blank

    Thanks Jeff. It works for blank, but The formula produces no "yes" for I. Column I is filled with Dates. Would that change the formula?

  4. #4
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: Formula to say "yes" if Column I has text, to say "no" if column I is blank

    Hello Shrad013,

    Or if you want to check for any Data in Cell I, Text or Integer, you could use;

    =IF(I1<>"","Yes","No")

    Please consider:

    Be polite. Thank those who have helped you. Then Click on the star icon in the lower left part of the contributor's post and add Reputation. Cleaning up when you're done. If you are satisfied with the help you have received, then Please do Mark your thread [SOLVED] .

  5. #5
    Registered User
    Join Date
    06-18-2013
    Location
    Minneapolis, MN
    MS-Off Ver
    Excel 2013
    Posts
    81

    Re: Formula to say "yes" if Column I has text, to say "no" if column I is blank

    Winon,

    Can you adjust your formula so that cells also remain blank if column [A] is blank?

  6. #6
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: Formula to say "yes" if Column I has text, to say "no" if column I is blank

    Yes,

    =IF(A1="","",IF(I1<>"","Yes","No"))

    It all depends on your exact requirements and/or conditions.
    Last edited by Winon; 06-27-2013 at 02:34 PM. Reason: Spelling :( !!!

+ 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