+ Reply to Thread
Results 1 to 5 of 5

"Probabilities" formula

  1. #1
    Registered User
    Join Date
    09-08-2009
    Location
    Czech Republic
    MS-Off Ver
    Excel 2003
    Posts
    1

    "Probabilities" formula

    Hello,
    Could you please help me with the following formula that I'm struggle with.
    If a number in A4 is the same as in A1:A3 to return on B1 "+" , if it's not the same to return "-".

    Thank you in advance !

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: "Probabilities" formula

    like this?

    =IF(ISNA(MATCH(A4;A1:A3;0));"-";"+")

  3. #3
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: "Probabilities" formula

    Or this: =IF(COUNTIF(A1:A3,A4)>0,"+","-")

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: "Probabilities" formula

    though technically no need for the >0 test

  5. #5
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: "Probabilities" formula

    though technically no need for the >0 test
    True. (force of habit )

+ 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