excel - Comparing two adjacent cells -


**a1      b1      comparison** a,b,c    a,b,c       equal  b,c,d    d,e,f     not equal  b,a,c    a,b,c       equal  e,f,g    e,f,g       equal 

how this? if letters(separated comma) in cell not in proper order, show equal if bolth adjacent cells have same letters.

if first 3 values in cell a1 , 1 comparison in cell b1.

paste following formula cell c1:

=and(iferror(find(mid(a1,1,1),b1)>0,false),iferror(find(mid(a1,3,1),b1)>0,false),iferror(find(mid(a1,5,1),b1)>0,false)) 

that work well.


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -