How to write formula to compare values in two columns in excel? -


column has email domain value(ex: yahoo.com) , column b has description value (ex:yahoo user). need compare value if matching or not. if has gmail.com , b has yahoo user result should 'false'. can withe formula place on excel.

if comparing each cell in column b corresponding cell in column a, try this

=countif(b2,"*"&a2&"*")>0 

Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

'hasOwnProperty' in javascript -