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
Post a Comment