ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   If Statments: Want TRUE if a value = any of the given values (https://www.excelbanter.com/excel-worksheet-functions/137310-if-statments-want-true-if-value-%3D-any-given-values.html)

Augabog

If Statments: Want TRUE if a value = any of the given values
 
How do I make an if statment that says: If Value A2 is equal to any of
the Values in Row 4 (F4:IV4), then it is true, otherwise false.

I was putting: =IF(A2=Sheet1!F4:IV4,"1","0"), but it doesn't seem to
recognize the simple F4:IV4 as "any of these values is true".

Thanks,
Kerry


Ron Coderre

If Statments: Want TRUE if a value = any of the given values
 
Try one of these:

If there might only be one match
=COUNTIF($F$4:$IV$4,A2)

or....if $F$4:$IV$4 may contain duplicate values
=--(COUNTIF($F$4:$IV$4,A2)0)

Is that something you can work with?
***********
Regards,
Ron

XL2002, WinXP


"Augabog" wrote:

How do I make an if statment that says: If Value A2 is equal to any of
the Values in Row 4 (F4:IV4), then it is true, otherwise false.

I was putting: =IF(A2=Sheet1!F4:IV4,"1","0"), but it doesn't seem to
recognize the simple F4:IV4 as "any of these values is true".

Thanks,
Kerry



PCLIVE

If Statments: Want TRUE if a value = any of the given values
 
You may try something like:
=IF(COUNTIF(Sheet1!F4:IV4,"0")0,TRUE,FALSE)

HTH,
Paul

"Augabog" wrote in message
oups.com...
How do I make an if statment that says: If Value A2 is equal to any of
the Values in Row 4 (F4:IV4), then it is true, otherwise false.

I was putting: =IF(A2=Sheet1!F4:IV4,"1","0"), but it doesn't seem to
recognize the simple F4:IV4 as "any of these values is true".

Thanks,
Kerry




T. Valko

If Statments: Want TRUE if a value = any of the given values
 
Another one:

=ISNUMBER(MATCH(A2,Sheet1!F4:IV4,0))

Biff

"Augabog" wrote in message
oups.com...
How do I make an if statment that says: If Value A2 is equal to any of
the Values in Row 4 (F4:IV4), then it is true, otherwise false.

I was putting: =IF(A2=Sheet1!F4:IV4,"1","0"), but it doesn't seem to
recognize the simple F4:IV4 as "any of these values is true".

Thanks,
Kerry




Augabog

If Statments: Want TRUE if a value = any of the given values
 
On Mar 30, 1:40 pm, "PCLIVE" wrote:
You may try something like:
=IF(COUNTIF(Sheet1!F4:IV4,"0")0,TRUE,FALSE)

HTH,
Paul

"Augabog" wrote in message

oups.com...

How do I make an if statment that says: If Value A2 is equal to any of
the Values in Row 4 (F4:IV4), then it is true, otherwise false.


I was putting: =IF(A2=Sheet1!F4:IV4,"1","0"), but it doesn't seem to
recognize the simple F4:IV4 as "any of these values is true".


Thanks,
Kerry




Thanks, this worked. I just had to replace the nested "0" with the
value I want to match up.



All times are GMT +1. The time now is 03:25 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com