ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 我的vba好像想在增加几列显示,下面的不会了。请大神来帮忙

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-5-13 17:05 | 显示全部楼层 |阅读模式
本帖最后由 mkm-_7605 于 2023-5-14 09:30 编辑


求大仙帮忙
我就是统计材料用的 ,我把表格改到我能改到的地步了 image.jpg


Public arr, X, i, Hx, k, d, arrSJ
Private Sub ListBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
    If KeyCode = 13 And Me.ListBox1.ListIndex > 0 Then
        k = Me.ListBox1.ListIndex
        Call CR                 '键盘 Enter 键
    ElseIf KeyCode > 48 And KeyCode < 58 Then
        k = KeyCode - 48        '键盘1-9键
        Call CR
        ActiveCell.Offset(1).Select
    ElseIf KeyCode = 37 Then
        Me.TextBox1.Activate    '键盘 左 键
    ElseIf KeyCode = 27 Then
        Call QC                 '键盘 Esc 键
    End If
End Sub
Private Sub TextBox1_Change()
    If TextBox1.Value <> "" Then
        Hx = Sheet3.Range("b9999").End(xlUp).Row
        arr = Sheet3.Range("A1:i" & Hx)
        arr(1, 1) = "序号"
        arr(1, 2) = "标号或组套产品代码"
        arr(1, 3) = "部件产品代码"
        arr(1, 4) = "27位"
        arr(1, 5) = "注册证号"
        arr(1, 6) = "单品名称"
        arr(1, 7) = "规格"
        arr(1, 8) = "型号"
        arr(1, 9) = "企业"
        'arr(1, 0) = "单价"
       ' arr(1, 11) = "单位"
          ListBox1.ColumnWidths = "1;1;1;1;100;225;130;100;20,1" '设置下拉框里面显示的内容的宽度
               X = 2 '从第二行显示数据库内容
        For i = 1 To UBound(arr)
            If InStr(arr(i, 1), UCase(TextBox1.Value)) > 0 Then    '数据库第1列按拼音简写查找
                arr(X, 1) = X - 1
                'arr(X, 1) = arr(i, 1)
               'arr(X, 1) = arr(i, 11)
              ' arr(X, 2) = arr(i, 10)
                arr(X, 3) = arr(i, 2)
                arr(X, 5) = arr(i, 4)
                arr(X, 6) = arr(i, 5)
                arr(X, 7) = arr(i, 7)
                arr(X, 8) = arr(i, 8)
                arr(X, 9) = arr(i, 9)
               ' arr(X, 11) = arr(i, 12)
                 
                 
            
                 X = X + 1
           End If
        Next
        If X >= 2 Then
            Sheet3.Range("Y1").Resize(X, 14) = arr
            ReDim arr(X, 14) '下拉框显示的列数除简拼列外
            arr = Sheet3.Range("y1:Am" & X - 1)
          Me.ListBox1.Clear
            Me.ListBox1.ColumnCount = 14 '显示下拉框里面的内容
            Me.ListBox1.List = arr
            Sheet3.Range("Y:Am").Clear
        End If
    Else
        Me.ListBox1.Clear
    End If
End Sub
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
    If KeyCode = 13 Then                                '键盘 Enter 键
        If TextBox1.Value = "" Then
            ActiveCell.Resize(1, 1).Borders.LineStyle = xlNone
            ActiveCell.Resize(1, 2).Value = ""
            Call QC
        Else
            k = 1
            Call CR
            ActiveCell.Offset(1).Select
        End If
    ElseIf KeyCode = 38 Then
        ActiveCell.Offset(-1).Select   '键盘 上 键
    ElseIf KeyCode = 40 Then
        ActiveCell.Offset(1).Select    '键盘 下 键
    ElseIf KeyCode = 27 Then
        Call QC                        '键盘 ESC 键
    End If
    With Me.ListBox1
        If KeyCode = 39 And .ListCount > 0 Then         '键盘 右 键
            If .ListCount > 1 Then .ListIndex = 1 Else .ListIndex = -1
            .Activate
        End If
    End With
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim i As Integer
    With Target
        If .Count = 1 And .Column = 3 And .Row > 4 And .Row < 112 Then '只有第4行-111行有提示功能,而且定位那列显示 column是那列是联想输入列
            Set d = CreateObject("Scripting.Dictionary")
            arrSJ = Sheet3.[a1].CurrentRegion
            For i = 1 To UBound(arrSJ)
                'd(arrSJ(i, 2)) = i
                      d(arrSJ(i, 2) & "|" & arrSJ(i, 3)) = i   '条件2列3列和四列精准定位
            Next
            With Me.TextBox1
                .Value = ""
                .Top = Target.Top
                .Left = Target.Left
                .Width = Target.Width
                .Height = Target.Height
                .Activate
                .Visible = True
            End With
            With Me.ListBox1
                .ColumnHeads = False
                .ColumnWidths = 25
                .ListStyle = fmListStylePlain
                .Top = Target.Top
                .Left = Target.Left + Target.Width
                .Width = 650
                .Height = 200
                .Visible = True
            End With
        Else
            Call QC
        End If
    End With
End Sub
Sub CR()
    On Error Resume Next
    With ActiveCell
        .Value = Me.ListBox1.List(k, 2)
        bh = Me.ListBox1.List(k, 3) & "|" & Me.ListBox1.List(k, 4) & "|" & Me.ListBox1.List(k, 5) '条件2列3列和四列精准定位
        .Offset(, 0).Value = Me.ListBox1.List(k, 2)
        If d.exists(bh) Then
          ActiveCell.Offset(0, 10) = arrSJ(d(bh), 10)
            ActiveCell.Offset(0, 11) = arrSJ(d(bh), 11)
             End If
         .Offset(, -2).Value = Me.ListBox1.List(k, 12)
         .Offset(, -1).Value = Me.ListBox1.List(k, 13) '设置显示那一列显示
         .Offset(, 0).Value = Me.ListBox1.List(k, 1) '设置显示那一列显示
         .Offset(, 1).Value = Me.ListBox1.List(k, 3) '设置显示那一列显示
         .Offset(, 2).Value = Me.ListBox1.List(k, 5) '设置显示那一列显示
         .Offset(, 3).Value = Me.ListBox1.List(k, 6) '设置显示那一列显示
         .Offset(, 4).Value = Me.ListBox1.List(k, 7) '设置显示那一列显示
         .Offset(, 5).Value = Me.ListBox1.List(k, 8) '设置显示那一列显示
       '  .Offset(, 10).Value = Me.ListBox1.List(k, 12)  '设置显示那一列显示
        ' .Offset(, 11).Value = Me.ListBox1.List(k, 11)  '设置显示那一列显示
         
         
      
    End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Column = 3 Then
Range("l3") = Format(Date, "yyyy年mm月dd日")
maxRow = 111
Range("o5:O" & maxRow) = "=IFERROR(L5*N5,"""")"
Range("M112") = "=SUM(O4:O112)"
End If
End Sub
Sub QC()
    Me.ListBox1.Visible = False
    Me.TextBox1.Visible = False
    Me.TextBox1.Value = ""
End Sub











image.jpg

2121212.rar

61.2 KB, 下载次数: 7

TA的精华主题

TA的得分主题

发表于 2023-5-15 02:31 | 显示全部楼层
请参考---------------

21212120515.rar

62.43 KB, 下载次数: 3

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2023-5-13 18:14 | 显示全部楼层
你这表格缺失又不知道做什么,搞不了

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-13 18:40 | 显示全部楼层
suntao2000 发表于 2023-5-13 18:14
你这表格缺失又不知道做什么,搞不了

我把表格改到 我会的尽头了。就是显示数据源对应内容。我统计用的,能麻烦改下吗

TA的精华主题

TA的得分主题

发表于 2023-5-13 20:16 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
提示:
给arr初始赋值时单元格区域列数框选不足,进而listbox列数亦不足,当然后续赋值到单元格时数据缺失。

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-13 21:16 | 显示全部楼层
剑指E 发表于 2023-5-13 20:16
提示:
给arr初始赋值时单元格区域列数框选不足,进而listbox列数亦不足,当然后续赋值到单元格时数据缺失 ...

那咋办呢?

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-13 21:18 | 显示全部楼层
剑指E 发表于 2023-5-13 20:16
提示:
给arr初始赋值时单元格区域列数框选不足,进而listbox列数亦不足,当然后续赋值到单元格时数据缺失 ...

有没有啥方法改下

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-14 09:06 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Public arr, X, i, Hx, k, d, arrSJ
Private Sub ListBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
    If KeyCode = 13 And Me.ListBox1.ListIndex > 0 Then
        k = Me.ListBox1.ListIndex
        Call CR                 '键盘 Enter 键
    ElseIf KeyCode > 48 And KeyCode < 58 Then
        k = KeyCode - 48        '键盘1-9键
        Call CR
        ActiveCell.Offset(1).Select
    ElseIf KeyCode = 37 Then
        Me.TextBox1.Activate    '键盘 左 键
    ElseIf KeyCode = 27 Then
        Call QC                 '键盘 Esc 键
    End If
End Sub
Private Sub TextBox1_Change()
    If TextBox1.Value <> "" Then
        Hx = Sheet3.Range("b9999").End(xlUp).Row
        arr = Sheet3.Range("A1:i" & Hx)
        arr(1, 1) = "序号"
        arr(1, 2) = "标号或组套产品代码"
        arr(1, 3) = "部件产品代码"
        arr(1, 4) = "27位"
        arr(1, 5) = "注册证号"
        arr(1, 6) = "单品名称"
        arr(1, 7) = "规格"
        arr(1, 8) = "型号"
        arr(1, 9) = "企业"
        'arr(1, 0) = "单价"
       ' arr(1, 11) = "单位"
          ListBox1.ColumnWidths = "1;1;1;1;100;225;130;100;20,1" '设置下拉框里面显示的内容的宽度
               X = 2 '从第二行显示数据库内容
        For i = 1 To UBound(arr)
            If InStr(arr(i, 1), UCase(TextBox1.Value)) > 0 Then    '数据库第1列按拼音简写查找
                arr(X, 1) = X - 1
                'arr(X, 1) = arr(i, 1)
               'arr(X, 1) = arr(i, 11)
              ' arr(X, 2) = arr(i, 10)
                arr(X, 3) = arr(i, 2)
                arr(X, 5) = arr(i, 4)
                arr(X, 6) = arr(i, 5)
                arr(X, 7) = arr(i, 7)
                arr(X, 8) = arr(i, 8)
                arr(X, 9) = arr(i, 9)
               ' arr(X, 11) = arr(i, 12)
                 
                 
            
                 X = X + 1
           End If
        Next
        If X >= 2 Then
            Sheet3.Range("Y1").Resize(X, 14) = arr
            ReDim arr(X, 14) '下拉框显示的列数除简拼列外
            arr = Sheet3.Range("y1:Am" & X - 1)
          Me.ListBox1.Clear
            Me.ListBox1.ColumnCount = 14 '显示下拉框里面的内容
            Me.ListBox1.List = arr
            Sheet3.Range("Y:Am").Clear
        End If
    Else
        Me.ListBox1.Clear
    End If
End Sub
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
    If KeyCode = 13 Then                                '键盘 Enter 键
        If TextBox1.Value = "" Then
            ActiveCell.Resize(1, 1).Borders.LineStyle = xlNone
            ActiveCell.Resize(1, 2).Value = ""
            Call QC
        Else
            k = 1
            Call CR
            ActiveCell.Offset(1).Select
        End If
    ElseIf KeyCode = 38 Then
        ActiveCell.Offset(-1).Select   '键盘 上 键
    ElseIf KeyCode = 40 Then
        ActiveCell.Offset(1).Select    '键盘 下 键
    ElseIf KeyCode = 27 Then
        Call QC                        '键盘 ESC 键
    End If
    With Me.ListBox1
        If KeyCode = 39 And .ListCount > 0 Then         '键盘 右 键
            If .ListCount > 1 Then .ListIndex = 1 Else .ListIndex = -1
            .Activate
        End If
    End With
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim i As Integer
    With Target
        If .Count = 1 And .Column = 3 And .Row > 4 And .Row < 112 Then '只有第4行-111行有提示功能,而且定位那列显示 column是那列是联想输入列
            Set d = CreateObject("Scripting.Dictionary")
            arrSJ = Sheet3.[a1].CurrentRegion
            For i = 1 To UBound(arrSJ)
                'd(arrSJ(i, 2)) = i
                      d(arrSJ(i, 2) & "|" & arrSJ(i, 3)) = i   '条件2列3列和四列精准定位
            Next
            With Me.TextBox1
                .Value = ""
                .Top = Target.Top
                .Left = Target.Left
                .Width = Target.Width
                .Height = Target.Height
                .Activate
                .Visible = True
            End With
            With Me.ListBox1
                .ColumnHeads = False
                .ColumnWidths = 25
                .ListStyle = fmListStylePlain
                .Top = Target.Top
                .Left = Target.Left + Target.Width
                .Width = 650
                .Height = 200
                .Visible = True
            End With
        Else
            Call QC
        End If
    End With
End Sub
Sub CR()
    On Error Resume Next
    With ActiveCell
        .Value = Me.ListBox1.List(k, 2)
        bh = Me.ListBox1.List(k, 3) & "|" & Me.ListBox1.List(k, 4) & "|" & Me.ListBox1.List(k, 5) '条件2列3列和四列精准定位
        .Offset(, 0).Value = Me.ListBox1.List(k, 2)
        If d.exists(bh) Then
          ActiveCell.Offset(0, 10) = arrSJ(d(bh), 10)
            ActiveCell.Offset(0, 11) = arrSJ(d(bh), 11)
             End If
         .Offset(, -2).Value = Me.ListBox1.List(k, 12)
         .Offset(, -1).Value = Me.ListBox1.List(k, 13) '设置显示那一列显示
         .Offset(, 0).Value = Me.ListBox1.List(k, 1) '设置显示那一列显示
         .Offset(, 1).Value = Me.ListBox1.List(k, 3) '设置显示那一列显示
         .Offset(, 2).Value = Me.ListBox1.List(k, 5) '设置显示那一列显示
         .Offset(, 3).Value = Me.ListBox1.List(k, 6) '设置显示那一列显示
         .Offset(, 4).Value = Me.ListBox1.List(k, 7) '设置显示那一列显示
         .Offset(, 5).Value = Me.ListBox1.List(k, 8) '设置显示那一列显示
       '  .Offset(, 10).Value = Me.ListBox1.List(k, 12)  '设置显示那一列显示
        ' .Offset(, 11).Value = Me.ListBox1.List(k, 11)  '设置显示那一列显示
         
         
      
    End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Column = 3 Then
Range("l3") = Format(Date, "yyyy年mm月dd日")
maxRow = 111
Range("o5:O" & maxRow) = "=IFERROR(L5*N5,"""")"
Range("M112") = "=SUM(O4:O112)"
End If
End Sub
Sub QC()
    Me.ListBox1.Visible = False
    Me.TextBox1.Visible = False
    Me.TextBox1.Value = ""
End Sub










TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-14 09:06 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
帮忙改下公式

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-5-15 09:19 | 显示全部楼层
xunanming 发表于 2023-5-15 02:31
请参考---------------

非常感谢您的帮忙。这就是我想要的。也是我的极限所在,不会做的地方。谢谢您了
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-16 12:59 , Processed in 0.050539 second(s), 17 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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