Microsoft VBA Excel 去重小工具

问题简述

在本工作表中,A1:B3单元格样式如下,通过名称管理器B列的单元格被命名为"LinkFile"、"SheetName"、"InputArea",请实现以下功能:读取Excel文件中的数据,去除重复的数据,并记录每个数据项最后一次出现的位置,最后将结果输出到当前工作表中。

A B
1 Link File:
2 Sheet Name:
3 Input Area:

代码描述

第一步:

读取:输入一个xls表格文件的地址到"LinkFile"、该文件内工作表名称到"SheetName"和需要读取数据的范围(例如A2:A102)到"InputArea",根据指定范围在该文件内指定工作表中读取所有数据;
第二步:

去重和获得索引:上一步获取的数据中存在重复,因此只需要保留唯一值,根据唯一值获得该值最后一次出现在读取数据范围的行列位置信息;
第三步:

输出:在本工作表中,在"InputArea"单元格下两行开始输出从上一步得到的单元格数据和对应的行列信息,也就是从A5开始输入单元格数据,B5开始输入对应的行列信息。

vba 复制代码
Sub ProcessData()
    Dim srcWb As Workbook
    Dim ws As Worksheet, srcWs As Worksheet
    Dim linkFile As String, sheetName As String, inputArea As String
    Dim rng As Range, cell As Range
    Dim dict As Object
    Dim outputRow As Long
    
    ' 创建字典来存储唯一值和对应的最后位置
    Set dict = CreateObject("Scripting.Dictionary")
    
    ' 获取当前活动的工作表
    Set ws = ThisWorkbook.ActiveSheet
    
    ' 读取工作表中的相关数据
    linkFile = ws.Range("LinkFile").Value
    sheetName = ws.Range("SheetName").Value
    inputArea = ws.Range("InputArea").Value
    
    ' 打开源数据文件
    Set srcWb = Workbooks.Open(linkFile)
    Set srcWs = srcWb.Sheets(sheetName)
    
    ' 获取指定范围
    Set rng = srcWs.Range(inputArea)
    
    ' 遍历范围,收集数据
    For Each cell In rng
        If Not dict.Exists(cell.Value) Then
            dict.Add cell.Value, cell.Address(False, False)
        Else
            dict(cell.Value) = cell.Address(False, False)  ' 更新为最后出现的位置
        End If
    Next cell
    
    ' 关闭源数据文件
    srcWb.Close False
    
    ' 输出结果
    outputRow = ws.Range("InputArea").Row + 2
    For Each key In dict.Keys
        ws.Cells(outputRow, 1).Value = key
        ws.Cells(outputRow, 2).Value = dict(key)
        outputRow = outputRow + 1
    Next
    
    MsgBox "数据处理完毕!"
End Sub

English:

vba 复制代码
Sub ProcessData()
    Dim srcWb As Workbook
    Dim ws As Worksheet, srcWs As Worksheet
    Dim linkFile As String, sheetName As String, inputArea As String
    Dim rng As Range, cell As Range
    Dim dict As Object
    Dim outputRow As Long
    
    ' Create a dictionary to store unique values and corresponding last positions
    Set dict = CreateObject("Scripting.Dictionary")
    
    ' Get the currently active worksheet
    Set ws = ThisWorkbook.ActiveSheet
    
    ' Read relevant data from the worksheet
    linkFile = ws.Range("LinkFile").Value
    sheetName = ws.Range("SheetName").Value
    inputArea = ws.Range("InputArea").Value
    
    ' Open the source data file
    Set srcWb = Workbooks.Open(linkFile)
    Set srcWs = srcWb.Sheets(sheetName)
    
    ' Get the specified range
    Set rng = srcWs.Range(inputArea)
    
    ' Iterate over the range, collecting data
    For Each cell In rng
        If Not dict.Exists(cell.Value) Then
            dict.Add cell.Value, cell.Address(False, False)
        Else
            dict(cell.Value) = cell.Address(False, False)  ' Update to the last position of occurrence
        End If
    Next cell
    
    ' Close the source data file
    srcWb.Close False
    
    ' Output the results
    outputRow = ws.Range("InputArea").Row + 2
    For Each key In dict.Keys
        ws.Cells(outputRow, 1).Value = key
        ws.Cells(outputRow, 2).Value = dict(key)
        outputRow = outputRow + 1
    Next
    
    MsgBox "Data processed successfully!"
End Sub

总结

相关推荐
用户83562907805114 小时前
使用 C# 将 DataTable 写入 Excel(基于 Spire.XLS for .NET)
excel
Deepoch16 小时前
机器人伴侣的智能升级:Deepoc具身智能模型如何重塑成人伴侣体验
microsoft
Deepoch16 小时前
机器人成人伴侣的智能化升级:Deepoc具身模型赋能沉浸式体验
microsoft
专注VB编程开发20年19 小时前
微软对传统网页设计工具在2010年停止开发
microsoft
码农阿豪20 小时前
飞算JavaAI:专为Java开发者打造的智能编程革命
java·开发语言·microsoft
迪尔~1 天前
Apache POI中通过WorkBook写入图片后出现导出PDF文件时在不同页重复写入该图片问题,如何在通过sheet获取绘图对象清除该图片
java·pdf·excel
Leinwin2 天前
微软发布GPT-5赋能的Copilot:重构办公场景的智能革命
gpt·microsoft·copilot
Bar_artist3 天前
微软推出革命性AI安全工具Project IRE,重塑网络安全防御新范式
人工智能·安全·microsoft
专注VB编程开发20年3 天前
IIS Express中可以同时加载并使用.net4.0和.NET 2.0的 DLL
c++·windows·microsoft·c#·vb.net
瓶子xf3 天前
使用Excel制作甘特图
excel·甘特图