You could use a formula in B2 (headers in Row 1):
=IF(COUNTIF($A$2:A2,A2)=1,COUNTIF(A:A,A2),"Delete me")
then drag down the length of your data
Select column B and
edit|copy
edit|paste special|values
Apply data|filter|autofilter to column B
Filter to show "delete me"
select those visible cells
rightclick on your selection
delete
entire row.
Delete the original column A if you want.
For the second part, I' create a new worksheet with those 3 letter codes and
translated names.
Then use a formula like this in another helper column:
=vlookup(left(b2,3),sheet2!a:b,2,false)
For more info about =vlookup()...
You could look at Debra Dalgleish's site:
http://www.contextures.com/xlFunctions02.html
TH3ROOKIE wrote:
>
> Hi.
>
> Here's what I'm looking to do.
>
> If I enter this in cell A:6 to A:8
>
> A:6 = 10b65b22
> A:7 = 10b65b22
> A:8 = 10b65b21
>
> then excel will see that A:6 and A:7 is the same value so it will erase
> A:7 and B:6 will give 2.
>
> So if A:8 was the same then A=6 then A:8 erase itself and B:6 gives 3.
>
> The other thing is if I enter this
>
> A:6 = 8kb7800
>
> Then I want excel to recognize the first 3 numbers/letters and if the
> first 3 characters = 8kb, then c:6 = FEDEX
>
> Hope I can get some help
>
> --
> TH3ROOKIE
> ------------------------------------------------------------------------
> TH3ROOKIE's Profile: http://www.excelforum.com/member.php...o&userid=13363
> View this thread: http://www.excelforum.com/showthread...hreadid=469379
--
Dave Peterson