Thread: [Solved] * Determine Capitalization
View Single Post
 
Old 05-03-2011, 01:19 AM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2000
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,343
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Quote:
Originally Posted by djreyrey View Post
Yes, I did look at your code which is why I'm asking you this question. I'm a newbie! I don't understand what you mean by "wrapping both expressions".
Given the nature of the code you've posted in the past, it was not apparent that you don't know how to code. As for what I mean by "wrapping both expressions" with the Ucase function, a quick read of the code reveals:
If UCase(.Range("A1").Value) = UCase(.Range("B1").Value) Then
In this example, the Ucase function encompasses the other expression on each side of the '=' symbol.
Quote:
Originally Posted by djreyrey View Post
I have not posted any code because I don't have any. Which is another reason why I'm here. I don't know how to proceed.
It would have been helpful had you said that's the kind of help you need.

What you're asking can't be done via formulae, since formulae can't delete rows. So, unless you want to use Excel's 'UPPER' worksheet function to compare the values in your ranges, then manually delete the duplicate rows, you'll need vba. And, before anyone can provide a vba solution, you'll need to supply details of the ranges to be compared and, where a match is found, which of those ranges is to be deleted and which is to be flagged.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote