ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 已知两个条件,做对应的下拉菜单,求大神帮忙!

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-3-29 16:09 | 显示全部楼层
miaojohn45 发表于 2024-3-29 15:51
好像是牵涉到数组计算了,之前的确实用不了,用辅助列完成吧:

方法二不太好用,这样行不行?现在A2和B2单元格我不需要做下拉,我就手动输入数据,当A2和B2单元格输入对应的数据后,C2才会出现对应的下拉菜单。相当于这张表上只做C2这个下拉菜单,A2和B2不做下拉

TA的精华主题

TA的得分主题

发表于 2024-3-29 16:13 | 显示全部楼层
wm863636363 发表于 2024-3-29 16:09
方法二不太好用,这样行不行?现在A2和B2单元格我不需要做下拉,我就手动输入数据,当A2和B2单元格输入对 ...

一样需要做出辅助序列。

TA的精华主题

TA的得分主题

发表于 2024-3-29 16:45 | 显示全部楼层
wm863636363 发表于 2024-3-29 16:09
方法二不太好用,这样行不行?现在A2和B2单元格我不需要做下拉,我就手动输入数据,当A2和B2单元格输入对 ...

如果你的软件支持lambda函数,可以定义一个双参数函数名称,然后在数据验证里引用:


image.png image.png

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-3-29 18:01 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
山菊花 发表于 2024-3-29 14:41
供参考。
多级菜单(数据有效性)终极方案【VBA】
https://club.excelhome.net/thread-1510919-1-1.html
...

大佬,我用你的那个表格修改了,但是我需要的在FGHI列显示,不需要在ABCD列显示,麻烦帮忙修改一下
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim nL%
    nL = Target.Column
    If Target.Row = 1 Or nL > 3 Or Target.CountLarge > 1 Then Exit Sub
    Application.EnableEvents = False
    Target.Offset(0, 1).Resize(1, 4 - nL).ClearContents
    Application.EnableEvents = True
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim sj(), nL%, cTxt$, nRow%, Arr(), ds As Object
    Set ds = CreateObject("Scripting.Dictionary")
    If Target.Row = 1 Or Target.Column > 4 Or Target.CountLarge > 1 Then Exit Sub
    nL = Target.Column
    sj = Range("a" & Target.Row).Resize(1, 3).Value
    With Sheets("基础")
        nRow = .Cells(999, nL).End(xlUp).Row
        Arr = .Range("a1").Resize(nRow, nL).Value
    End With
    For i = 2 To nRow
        For j = 1 To nL - 1
            If Arr(i, j) <> sj(1, j) Then Exit For
        Next
        If j = nL And Not ds.exists(Arr(i, nL)) Then
            ds(Arr(i, nL)) = ""
            cTxt = cTxt & "," & Arr(i, nL)
        End If
    Next
    With Target.Validation
        .Delete
        If cTxt <> "" Then .Add 3, 1, 1, Mid(cTxt, 2)
    End With
End Sub
11111111.png

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-3-29 18:03 | 显示全部楼层
山菊花 发表于 2024-3-29 14:41
供参考。
多级菜单(数据有效性)终极方案【VBA】
https://club.excelhome.net/thread-1510919-1-1.html
...

大佬,你的这个表怎么改?代码怎么写?
11111111.png

TA的精华主题

TA的得分主题

发表于 2024-3-29 18:23 | 显示全部楼层
wm863636363 发表于 2024-3-29 18:03
大佬,你的这个表怎么改?代码怎么写?

Private Sub Worksheet_Change(ByVal Target As Range)
    Dim nL%
    nL = Target.Column
    If Target.Row = 1 Or nL < 6 Or nL > 8 Or Target.CountLarge > 1 Then Exit Sub '修改9
    Application.EnableEvents = False
    Target.Offset(0, 1).Resize(1, 9 - nL).ClearContents '修改10
    Application.EnableEvents = True
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim sj(), nL%, cTxt$, nRow%, Arr(), ds As Object
    Set ds = CreateObject("Scripting.Dictionary")
    If Target.Row = 1 Or Target.Column < 6 Or Target.Column > 9 Or Target.CountLarge > 1 Then Exit Sub '修改1
    nL = Target.Column
    sj = Range("f" & Target.Row).Resize(1, 3).Value '修改2
    With Sheets("基础")
        nRow = .Cells(999, nL - 5).End(xlUp).Row '修改3
        Arr = .Range("a1").Resize(nRow, nL - 5).Value '修改4
    End With
    For i = 2 To nRow
        For j = 1 To nL - 6 '修改5
            If Arr(i, j) <> sj(1, j) Then Exit For
        Next
        If j = nL - 5 And Not ds.exists(Arr(i, nL - 5)) Then '修改6
            ds(Arr(i, nL - 5)) = "" '修改7
            cTxt = cTxt & "," & Arr(i, nL - 5) '修改8
        End If
    Next
    With Target.Validation
        .Delete
        If cTxt <> "" Then .Add 3, 1, 1, Mid(cTxt, 2)
    End With
End Sub

TA的精华主题

TA的得分主题

发表于 2024-3-29 18:29 | 显示全部楼层
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim nL%
    nL = Target.Column
    If Target.Row = 1 Or nL < 6 Or nL > 8 Or Target.CountLarge > 1 Then Exit Sub '修改4
    Application.EnableEvents = False
    Target.Offset(0, 1).Resize(1, 9 - nL).ClearContents '修改5
    Application.EnableEvents = True
End Sub

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim sj(), nL%, cTxt$, nRow%, Arr(), ds As Object
    Set ds = CreateObject("Scripting.Dictionary")
    nL = Target.Column - 5 '修改1
    If Target.Row = 1 Or nL < 1 Or nL > 4 Or Target.CountLarge > 1 Then Exit Sub '修改2
    sj = Range("f" & Target.Row).Resize(1, 3).Value '修改3
    With Sheets("基础")
        nRow = .Cells(999, nL).End(xlUp).Row
        Arr = .Range("a1").Resize(nRow, nL).Value
    End With
    For i = 2 To nRow
        For j = 1 To nL - 1
            If Arr(i, j) <> sj(1, j) Then Exit For
        Next
        If j = nL And Not ds.exists(Arr(i, nL)) Then
            ds(Arr(i, nL)) = ""
            cTxt = cTxt & "," & Arr(i, nL)
        End If
    Next
    With Target.Validation
        .Delete
        If cTxt <> "" Then .Add 3, 1, 1, Mid(cTxt, 2)
    End With
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-3-29 18:31 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
山菊花 发表于 2024-3-29 18:23
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim nL%
    nL = Target.Column

总是提示这个
11111111111.png

TA的精华主题

TA的得分主题

发表于 2024-3-29 18:48 | 显示全部楼层

供参考。

四级菜单1(VBA).rar

16.48 KB, 下载次数: 1

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-3-29 18:54 | 显示全部楼层

再帮我改一个从E列开始的,只显示EFG这三列下拉,然后“基础表”可以录入到9999行的,麻烦大佬了,跪谢!!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-18 08:15 , Processed in 0.043582 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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