這是由一位程序員Reafidy在stackoverflow上建議的代碼。它按預期工作。 Need a better optimized code? 現在我必須重新使用相同的代碼來處理大文件。需要對下面的代碼進行一些更改
Sub Delete_Duplicate_Codes()
ThisWorkbook.Worksheets("Data").Activate
Dim vData As Variant, vArray As Variant
Dim lRow As Long
With ActiveSheet.Range("A3", Cells(Rows.Count, "A").End(xlUp)).Offset(, 52)
.FormulaR1C1 = "=RC[-24]&RC[-23]&RC[-19]&RC[-18]&RC[-17]&RC[-16]" ' I know what these meant concatenate A,B,F,G,H,I and I have changed it accordingly
vData = .Resize(, 1).Value
End With
ReDim vArray(1 To UBound(vData, 1), 0)
With CreateObject("Scripting.Dictionary")
For lRow = 1 To UBound(vData, 1)
If Not .exists(vData(lRow, 1)) Then
vArray(lRow, 0) = "x"
.Add vData(lRow, 1), Nothing
End If
Next lRow
End With
Application.ScreenUpdating = False
With ActiveSheet
.Range("BB3").Resize(UBound(vArray, 1)) = vArray
On Error Resume Next
.Range("BA34274", .Cells(Rows.Count, "BA").End(xlUp)).Offset(, 1).SpecialCells(xlCellTypeBlanks).EntireRow.Delete
On Error GoTo 0
.Columns(52).Resize(, 2).ClearContents ' throwing an error
End With
Application.ScreenUpdating = True
End Sub
他幫我,我們已經使用了Y和Z列這些目的,現在,我必須使用BA和BB列這些任務。我不知道在哪裏做出改變。我取代Z,使用「BB」和y與「BA」列,但其引發錯誤應用程序定義的或在這些線
.Columns(52).Resize(, 2).ClearContents
其中我必須作出改變和頂部1和2行是對象定義用於標題。細胞從第三排開始。請幫助我使用這些代碼。任何幫助是極大的讚賞
我已經改變
.FormulaR1C1 = "=RC[-24]&RC[-23]&RC[-19]&RC[-18]&RC[-17]&RC[-16]" these to
.FormulaR1C1 = "=RC[-52]&RC[-51]&RC[-47]&RC[-46]&RC[-45]&RC[-44]" these
我猜它一定是正確的
Niko,是代碼工作還是你還需要幫助? – Reafidy
@Reafidy其實我沒有測試代碼呢!我正在與其他活動一起工作我將在星期一進行測試我沒有時間測試 – niko
@Reafidy測試代碼後,我會讓你知道是否有任何改變,並感謝您的幫助 – niko