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

javascript - Knockout pushing observable and computed data to an observable array -

'hasOwnProperty' in javascript -

Trouble making a JSON string -