ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   reconciliation (https://www.excelbanter.com/excel-programming/275411-reconciliation.html)

shaharul

reconciliation
 
can anybody help with the VBA for comparing data in two worksheets and
delete the matching data or copy the data that cannot be matched

John[_50_]

reconciliation
 
dim i as integer, j as integer
for i = 1 to maxrows
for j = 1 to maxcols
if sheets("Sheet1").cells(i,j) = sheets("Sheet2")_
.cells(i,j) then
sheets("Sheet1").cells(i,j).ClearContents
sheets("Sheet2").cells(i,j).ClearContents
endif
next j
next i


this deletes the data that is matched in both sheets.
John.
-----Original Message-----
can anybody help with the VBA for comparing data in two

worksheets and
delete the matching data or copy the data that cannot be

matched
.



All times are GMT +1. The time now is 01:49 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com