Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Worksheet Functions / March 2008

Tip: Looking for answers? Try searching our database.

Compare Col A and Col M, if Match, Copy Col N to Col E

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
ryguy7272 - 21 Mar 2008 17:19 GMT
I'm trying to get this macro to compare values in Column A and Column M,
starting in Cell(2, 13), and if there is a match, copy the value from Column
N (that  corresponds to Column M) into Column E.  For instance, 4/1/2008 is
in Cell A1 (and the dates go down consecutively).  I have 4/6/2008 in M2 and
5,000,000 in N2.  How can I get 5,000,000 into E6 (A6 contains 4/6/2008)?  
Confused yet?  I am.

Sub MatchAandM()
Dim Lrow As Long
Dim Rng As Range, i As Range, xRng As Range

Lrow = Range("A65536").End(xlUp).Row
Set Rng = Range(Cells(2, 13), Cells(Lrow, 2))

For Each i In Rng
Set xRng = Rng.Find(What:=i.Offset(0, -1).Value, _
LookIn:=xlValues, MatchCase:=False)
If xRng Is Nothing Then
   'Else
   i.Offset(0, -1).Copy i.Offset(0, 1)
End If
Next i

End Sub

Thanks for the help; I truly appreciate it.

Regards,
Ryan--
RyGuy
ryguy7272 - 21 Mar 2008 17:57 GMT
Whoops!  Just realized I posted to the excel-Functions group.  I'm going over
to the Excel-Programming group now...
Signature

RyGuy

> I'm trying to get this macro to compare values in Column A and Column M,
> starting in Cell(2, 13), and if there is a match, copy the value from Column
[quoted text clipped - 26 lines]
> Ryan--
> RyGuy
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.