我们如何检查MS-Excel中的两行/列是否包含相同的文本,无论情况如何?

时间:2020-12-15 15:06:07

I want to compare two rows or columns in MS-Excel 2013, to check if they have the same text.

我想在MS-Excel 2013中比较两行或两列,以检查它们是否具有相同的文本。

It somewhat like the EXACT() function but without being case sensitive.

它有点像EXACT()函数但不区分大小写。

Like

A1: Abcd

B1: abcd

C1: True (result of matching)

C1:True(匹配结果)

Then the corresponding result should be true. I tried using EXACT() method, but it only returns true if I have exactly the same text (Abcd) in B1.

那么相应的结果应该是真的。我尝试使用EXACT()方法,但只有在B1中具有完全相同的文本(Abcd)时才返回true。

1 个解决方案

#1


7  

You may use any of below option

您可以使用以下任何选项

=A1=B1 or =EXACT(UPPER(A2),UPPER(B2))

= A1 = B1或=精确(上(A2),上(B2))

我们如何检查MS-Excel中的两行/列是否包含相同的文本,无论情况如何?

#1


7  

You may use any of below option

您可以使用以下任何选项

=A1=B1 or =EXACT(UPPER(A2),UPPER(B2))

= A1 = B1或=精确(上(A2),上(B2))

我们如何检查MS-Excel中的两行/列是否包含相同的文本,无论情况如何?