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

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -