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

c# - Update a combobox from a presenter (MVP) -

android - Unable to generate FCM token from dynamically instantiated Firebase -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -