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 还不太熟悉。我有一个名为 Box_One 的文本框。这已在我的用户表单上设置。我想要做的就是让单元格值始终等于文本框中的任何值。
我尝试了以下方法,但不太确定如何正确实施
Home.Range("A2").Value = Box_One.Value
如何使用文本框的 Change 事件来运行您想要的代码?就像是
Private Sub TextBox1_Change() Range("BU1").value = TextBox1.value ' specify the destination sheet and cell here End Sub
我快速测试了这个并且它有效。