Assumes you have it sorted by col E
Option Explicit
Sub SortColE()
Dim lr As Long
lr = Cells(Rows.Count, 1).End(xlUp).Row
Range("A1:F" & lr).Sort Key1:=Range("E1"), _
Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, _
Orientation:=xlTopToBottom
End Sub
Sub getonlylastvaluecolE()
Dim i As Long
sortcolE
For i = Cells(Rows.Count, 1).End(xlUp).Row To 1 Step -1
If Cells(i + 1, "e") = Cells(i, "e") Then Rows(i).Delete
Next i
End Sub
-----Original Message-----
From: Gaetan M
Sent: Wednesday, August 31, 2011 8:23 AM
To: MS EXCEL AND VBA MACROS
Subject: Re: $$Excel-Macros$$ Macro to remove repeats and merge
Thank you. The criteria is the column E (RNLO)
On Aug 31, 7:50 am, "dguillett1" <dguille...@gmail.com> wrote:
Not sure of your criteria but try this
Option Explicit
Sub getonlylastvaluecolB()
Dim i As Long
For i = Cells(Rows.Count, 1).End(xlUp).Row To 1 Step -1
If Left(Cells(i + 1, 1), 4) = Left(Cells(i, 1), 4) Then Rows(i).Delete
Next i
End Sub
===========
-----Original Message-----
From: Gaetan M
Sent: Tuesday, August 30, 2011 4:14 PM
To: MS EXCEL AND VBA MACROS
Subject: $$Excel-Macros$$ Macro to remove repeats and merge
I have the following:
Column A B C D
E F
12722 12722 51.5 64.89 RNLO X
12723 12723 51.5 64.89 RNLO X
Would you have the solution to replace B1 by B2 and delete row 2 once
completed since they have been merge?
Thanks,
G.
--
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links
:http://twitter.com/exceldailytip
2. Join our LinkedIN group @http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials athttp://www.excel-macros.blogspot.com
4. Learn VBA Macros athttp://www.quickvba.blogspot.com
5. Excel Tips and Tricks athttp://exceldailytip.blogspot.com
To post to this group, send email to excel-macros@googlegroups.com
<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below
linkhttp://www.facebook.com/discussexcel- Hide quoted text -
- Show quoted text -
--
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
To post to this group, send email to excel-macros@googlegroups.com
<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel
--
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links :
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
To post to this group, send email to excel-macros@googlegroups.com
<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel