gpt4 book ai didi

vba - 删除所有重复行 Excel vba 无法正常工作

转载 作者:行者123 更新时间:2023-12-04 20:43:12 24 4
gpt4 key购买 nike

我在 excel 中创建了一个带有用户表单的工作簿,它允许您在工作表中导入 .csv 数据。
知道我有重复行的问题。我在这里找到了一个解决方案,但它不能 100% 工作。
( Delete all duplicate rows Excel vba ) 脚本删除了大部分重复数据,但仍有 2-5 行重复。首先我认为这是单元格的格式,但这不是问题......

这是宏:

    Sub DeleteRows()
With ActiveSheet
Set Rng = Range("A1", Range("T1").End(xlDown))
Rng.RemoveDuplicates Columns:=Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20), Header:=xlYes
End With
End Sub

剩余的重复数据以负数开头。我不知道这是否有助于找到解决方案...

最佳答案

我不知道真正的问题,但我通过在每个单元格中添加一个点来解决它。
示例:

1. Cell1  -> .Cell1
2. Remove the duplicates
3. .Cell1 -> Cell1

这是代码:
Sub DeleteRows()
Dim c As Long
With ActiveSheet
For c = 1 To 20
If Application.CountA(.Columns(c)) Then
.Columns(c).TextToColumns Destination:=.Cells(1, c), _
DataType:=xlFixedWidth, FieldInfo:=Array(0, 1)
End If
Next c
With .Range("A1", .Range("T1").End(xlDown)).Cells
.RemoveDuplicates Columns:=Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20), Header:=xlYes
End With
End With
End Sub

Private Sub CommandButton2_Click()
.
.'some code'
.
For i = 2 To ActiveSheet.Cells(Rows.Count, 1).End(xlUp).row
column = ActiveSheet.Range("A" & i).value
If column < 0 Then
column = "." & column
ActiveSheet.Range("A" & i).value = column
End If
Next

Call DeleteRows

For i = 2 To ActiveSheet.Cells(Rows.Count, 1).End(xlUp).row
firstChar = Left(ActiveSheet.Range("A" & i).value, 1)
If firstChar = "." Then
column = Right(ActiveSheet.Range("A" & i).value, Len(ActiveSheet.Range("A" & i).value) - 1)
ActiveSheet.Range("A" & i).value = column
End If
Next
.
.'some code'
.
End Sub

这不是最好的解决方案,但它有效!
感谢您的帮助。

关于vba - 删除所有重复行 Excel vba 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27819461/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com