Using IF statement compare cell ID with data in another column tru

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

ex. IF cell C2 is listed in column F need to state 'True' or 'False'. Here
is what I typed, however, it is not working correctly. Help!
=IF(C2=F:F,"true")
 
hi Connie,

try
=if(iserror(vlookup(c2,f:f,1,0)),"false","true")

hth
regards from Brazil
Marcelo

"connie" escreveu:
 
connie said:
ex. IF cell C2 is listed in column F need to state 'True' or 'False'.
Here
is what I typed, however, it is not working correctly. Help!
=IF(C2=F:F,"true")

Try: =IF(Match(c2,F:F,0),"true")

Scott
 
I had already used the previous answer which worked.... thanks for a quick
response!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top