Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请有人帮助我从 excel 下拉列表中读取值,并将这些值与不同单元格中的值进行复制,并在 VBA excel 中显示结果
我有 3 个下拉列表,我会将这些值与其他单元格中的值进行比较,如果匹配,我将显示该值。
我有 2 张,Sheet1 和 Sheet2。在 Sheet1 中,我有 3 个下拉列表,我将在其中选择值。当我选择这些值时,我需要在 sheet2 中存在的表中搜索这些值。以及要在特定单元格中显示的值。怎么做。请帮忙
你可能会寻找类似的东西吗?
Private Sub ComboBox1_Change() If ComboBox1.Value = Range("E3").Text Then MsgBox "Same Values" End If End Sub