Create 3rd data set off comparison of 2 other sets

R

Ron

Hoping someone out there can help me with this. I have 2 sheets in the same
wb. I need to be able to compare the 2 sets of data in both sheets and have
them combine on a 3rd sheet. For example.
Sheet 1 has the following data in Column A:

abc
defg
hijk

Sheet 2 has the following data in Column A:

abc
hijk
lmn

I need to somehow to have sheet 3 automatically populate with all the items
that show up on both sheet 1 and sheet 2, but only show up once as in the
example below.

abc
defg
higj
lmn

The amount of data in sheets 1 and 2 will change each time the user updates
the workbook, and I need to have sheet 3 populate automatically, so I don't
know if it can be done through formulas, or if a macro is needed.

Any guidance would be appreciated.

Thanks
 
R

Ron

Joel, Macro works great. Is there a way to have it start on a specific row
for copying the data from sheets 1 and 2? The data in sheets 1 and 2 will
always begin in row 6, with headers in rows 1 - 5, which i don't need on
sheet 3.

Thanks

Ron
 
R

Ron

Works great. Thanks for all your help.

Ron

joel said:
try these changes.
VBA Code:
Sub CombineSheets()

StartRow = 6
'copy column A on sheet 1 to column A on sheet 3
With Sheets("sheet1")
LastRow = .Range("A" & Rows.Count).End(xlUp).Row
Set Sht1Range = .range("A" & StartRow & ":A" & LastRow)
End With



'get range of data in sheet 2 column A
With Sheets("sheet2")
LastRow = .Range("A" & Rows.Count).End(xlUp).Row
Set Sht2Range = .Range("A" & StartRow & ":A" & LastRow)
End With

'copy data then filter unique values
With Sheets("sheet3")
Sht1Range.Copy Destination:=.Range("A1")
Set LastCell = .Range("A" & Rows.Count).End(xlUp)
Set NewCell = LastCell.Offset(1, 0)
Sht2Range.Copy Destination:=NewCell
LastRow = .Range("A" & Rows.Count).End(xlUp).Row

'use advance filter to get unique values
Set DataRange = .Range("A1:A" & LastRow)
DataRange.AdvancedFilter _
Action:=xlFilterCopy, _
CopyToRange:=Range("B1"), _
Unique:=True

'delete column A so unique values are in column A
.Columns("A").Delete
End With

End Sub
--------------------


--
joel
------------------------------------------------------------------------
joel's Profile: 229
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=183144

Microsoft Office Help

.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top