+ Reply to Thread
Results 1 to 8 of 8

Request for Formula to find out True Or False

  1. #1
    Registered User
    Join Date
    03-27-2014
    Location
    Mumbai
    MS-Off Ver
    Excel 2010
    Posts
    4

    Arrow Request for Formula to find out True Or False

    IF The following is data

    1 01/03/14
    2 02/03/14
    3 03/03/14
    4 04/03/14
    5 05/03/14
    1 06/03/14
    6 07/03/14


    Question is

    if i want to find True or false (means following data available or not in above table.

    1 06/03/14


    Please share formula for this.

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Request for Formula to find out True Or False

    Let's say your table is in A2:A15 and the number you want to check is in C1
    =ISNUMBER(MATCH(C1, $A$2:$A$15,0))
    Does that work for you?
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Valued Forum Contributor AZ-XL's Avatar
    Join Date
    03-22-2013
    Location
    Azerbaijan, Baku
    MS-Off Ver
    Excel 2007
    Posts
    603

    Re: Request for Formula to find out True Or False

    =IF(ISERROR(MATCH(C1,A:A,0)),FALSE,TRUE)

    or
    =IF(ISERROR(MATCH(41793,A:A,0)),FALSE,TRUE)
    41793 is a value of 06/03/14
    Appreciate the help? CLICK *

  4. #4
    Registered User
    Join Date
    03-27-2014
    Location
    Mumbai
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Request for Formula to find out True Or False

    NO.... Excel is considering 1st row only....


    I want to chech both 1 and 06/03/14 are available in that table. if available then true or false

  5. #5
    Valued Forum Contributor AZ-XL's Avatar
    Join Date
    03-22-2013
    Location
    Azerbaijan, Baku
    MS-Off Ver
    Excel 2007
    Posts
    603

    Re: Request for Formula to find out True Or False

    e1 cell = value 1
    d1 cell date

    IF(COUNTIFS(A:A,E1,B:B,D1)>0,TRUE,FALSE)

  6. #6
    Registered User
    Join Date
    03-27-2014
    Location
    Mumbai
    MS-Off Ver
    Excel 2010
    Posts
    4

    Re: Request for Formula to find out True Or False

    thanks countifs is working...

  7. #7
    Valued Forum Contributor AZ-XL's Avatar
    Join Date
    03-22-2013
    Location
    Azerbaijan, Baku
    MS-Off Ver
    Excel 2007
    Posts
    603

    Re: Request for Formula to find out True Or False

    You are welcome

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Request for Formula to find out True Or False

    Like this...

    =COUNTIFS(A:A,E1,B:B,D1)>0
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

+ 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. What is best to use for helper cells 0 or 1, typed true or false or =true =false
    By Gingermuppet in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-20-2014, 10:41 PM
  2. [SOLVED] in this TRUE OR FALSE function, i want desired name instead of display true or false
    By vengatvj in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-15-2013, 06:44 PM
  3. VBA Find. return True/ False
    By WAW in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-03-2010, 06:52 AM
  4. Find [VALUE] then store True/False
    By rziegler in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-03-2009, 04:53 PM
  5. [SOLVED] VB find (true false)
    By Wildman in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 05-06-2005, 07:06 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