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.
根据 Activex 组合框中的选定值,如何在特定工作表中使用 vlook up 并在另一个工作表中显示该数据。
使用 LinkedCell 属性并在其中键入地址。如果您想在另一个电子表格中使用该值,您可以使用一个简单的工作表公式=来完成。
=
当组合框发生如下变化时,在 VBA 中为组合框添加一个脚本:
Private Sub ComboBox1_Change() Range("YOURCELL").Value2 = ComboBox1.Value End Sub
然后单元格“YOURCELL”将包含组合框的值,只要其值发生变化。如果您在 vlookup 中引用该“YOURCELL”单元格,您就在那里!