How can we check if two rows/columns in MS-Excel contain same text, irrespective of the case?

22,390

You may use any of below option

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

enter image description here

Share:
22,390
demouser123
Author by

demouser123

##3 SQA User from India #Proud Indian By Day - A bounty hunter who is a nightmare for the dev's at my company. By Night - I love to be Dora the Explorer for Testing.

Updated on August 07, 2022

Comments

  • demouser123
    demouser123 over 1 year

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

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

    Like

    A1: Abcd

    B1: abcd

    C1: True (result of matching)

    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.