Even realized: =IF(A2=B2,"equals","not equals") makes no difference between higher an lower cases.
It delivers equals on comparing of example.com/Lesezeichen.html and example.com/lesezeichen.html.
Or is it an issue of german Excel?
Even realized: =IF(A2=B2,"equals","not equals") makes no difference between higher an lower cases.
It delivers equals on comparing of example.com/Lesezeichen.html and example.com/lesezeichen.html.
Or is it an issue of german Excel?
What you're looking for is an Exact function which looks for the exact text including case sensitivity
=IF(exact(A2,B2),"equals","not equals")
= is good only for numeric values. Every day something new:) Thank you!Exact function for this, so we both learned a little bit!