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 !
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 !
like this?
=IF(ISNA(MATCH(A4;A1:A3;0));"-";"+")
Never use Merged Cells in Excel
Or this: =IF(COUNTIF(A1:A3,A4)>0,"+","-")
though technically no need for the >0 test![]()
My Recommended Reading:
Volatility
Sumproduct & Arrays
Pivot Intro
Email from XL - VBA & Outlook VBA
Function Dictionary & Function Translations
Dynamic Named Ranges
True. (force of habitthough technically no need for the >0 test![]()
)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks