使用VBA更新表的行

时间:2019-01-03 02:18:16

标签: excel vba excel-vba

我有一张这样的桌子。 enter image description here

我需要使用VBA用户表单进行编辑。 我需要从列表中选择一个序列号,其他细节应包含在更改事件的文本中。

因此,我组成了以下用户表单。 enter image description here

我添加了序列号列表框的rowSource作为序列号。我应该如何在文本框中查看玩具类型,滚轮和鼻钉。感谢您的指导。

1 个答案:

答案 0 :(得分:0)

一旦没有提供代码,我只会做一个一般的解释。

Check this link for future questions

首先,如果您确实要选择,则需要使用ComboBox,并且在加载/显示表单之前,请使用以下代码:

myArray = ws.Range() 'Define your serial no. range here
With Me.ComboBox
   .List = myArray
End With

要在选择一个值时更新其他字段,请在用户窗体上使用如下子项:

Private Sub myCombo_AfterUpdate()
    'look for Me.myCombo.Value on range and update your textbox
End Sub