ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 175|回复: 8

请教一下大家

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-9-15 06:03 | 显示全部楼层 |阅读模式
本帖最后由 missyoua 于 2024-9-15 06:10 编辑

Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Worksheet.Name = "Sheet2" And Target.Column = 1 And Target.Row >= 3 And Target.Row <= 127 Then
        Dim searchValue As Variant
        searchValue = Target.value
        
        Dim sheet1 As Worksheet
        Set sheet1 = ThisWorkbook.Sheets("Sheet1")
        
        Dim foundRow As Long
        foundRow = 0
        Dim i As Long
        For i = 3 To 127
            If sheet1.Cells(i, 1).value = searchValue Then
                foundRow = i
                Exit For
            End If
        Next i
        
        If foundRow > 0 Then
            Dim sourceRange As Range
            Set sourceRange = sheet1.Rows(foundRow)
            
            Dim destinationRange As Range
            Set destinationRange = Target.EntireRow
            
            Dim j As Long
            For j = 1 To sourceRange.Columns.Count
                Dim value As Variant
                value = sourceRange.Cells(1, j).value
                If IsNumeric(value) Then
                    If value = 0 Then
                        destinationRange.Cells(1, j).value = ""
                    Else
                        destinationRange.Cells(1, j).value = Val(value)
                    End If
                Else
                    destinationRange.Cells(1, j).value = value
                End If
            Next j
        End If
    End If
End Sub
请教一下大家为什么我使用这个VBA  会卡顿几秒呢  怎么才不卡

新建 XLS 工作表.rar

72.64 KB, 下载次数: 9

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-15 06:03 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
超级烦 每次都会卡顿几秒

TA的精华主题

TA的得分主题

发表于 2024-9-15 08:12 | 显示全部楼层
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2. If Target.Worksheet.Name = "Sheet2" And Target.Column = 1 And Target.Row >= 3 And Target.Row <= 127 Then
  3.   Dim searchValue As Variant
  4.   searchValue = Target.value

  5.   Dim sheet1 As Worksheet
  6.   Set sheet1 = ThisWorkbook.Sheets("Sheet1")

  7.   Dim foundRow As Long
  8.   foundRow = 0
  9.   Dim i As Long
  10.   For i = 3 To 127
  11.    If sheet1.Cells(i, 1).value = searchValue Then
  12.     foundRow = i
  13.     Exit For
  14.    End If
  15.   Next i

  16.   If foundRow > 0 Then
  17.    Dim sourceRange As Range
  18.    Set sourceRange = sheet1.Rows(foundRow)

  19.    Dim destinationRange As Range
  20.    Set destinationRange = Target.EntireRow
  21.    Application.EnableEvents = False

  22.    Dim j As Long
  23.    For j = 1 To sourceRange.Columns.Count
  24.     Dim value As Variant
  25.     value = sourceRange.Cells(1, j).value
  26.     If IsNumeric(value) Then
  27.      If value = 0 Then
  28.       destinationRange.Cells(1, j).value = ""
  29.      Else
  30.       destinationRange.Cells(1, j).value = Val(value)
  31.      End If
  32.     Else
  33.      destinationRange.Cells(1, j).value = value
  34.     End If
  35.    Next j
  36.    Application.EnableEvents = True

  37.   End If
  38. End If
  39. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-15 08:31 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-9-15 09:09 | 显示全部楼层
Target.Worksheet.Name  这个确定没问题???target是单元格呃

TA的精华主题

TA的得分主题

发表于 2024-9-15 09:36 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
  1. Private Sub Worksheet_Change(ByVal Target As Range)
  2. Dim rG As Range, i&, j&
  3. Application.EnableEvents = False
  4.     If Target.Column = 1 And Target.Row >= 3 And Target.Row <= 127 Then
  5.         Dim searchValue As Variant
  6.         searchValue = Target.value
  7.         Dim sheet1 As Worksheet
  8.         Set sheet1 = ThisWorkbook.Sheets("Sheet1")
  9.         searchValue = Target.value
  10.         Target.EntireRow.ClearContents
  11.         If searchValue <> "" Then
  12.             Set rG = sheet1.[a3:a127].Find(searchValue)
  13.     Dim sourceRange As Range
  14.             Set sourceRange = sheet1.Rows(rG.Row)
  15.             
  16.             Dim destinationRange As Range
  17.             Set destinationRange = Target.EntireRow
  18.             If Not rG Is Nothing Then
  19.                 For j = 1 To sourceRange.Columns.Count
  20.                     value = sourceRange.Cells(1, j).value
  21.                     If IsNumeric(value) Then
  22.                         If value = 0 Then
  23.                             destinationRange.Cells(1, j).value = ""
  24.                         Else
  25.                             destinationRange.Cells(1, j).value = Val(value)
  26.                         End If
  27.                     Else
  28.                         destinationRange.Cells(1, j).value = value
  29.                     End If
  30.                 Next j
  31.             End If
  32.         End If
  33.     End If
  34. Application.EnableEvents = True
  35. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-15 18:21 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-9-15 18:59 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-9-15 23:22 | 显示全部楼层
卡顿几秒就烦吗?我这登个系统得2分钟,要是查询某个历史数据那得10分钟以上
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-19 01:54 , Processed in 0.045888 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表