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.
如何从单元格 B2 填充组合框(在用户窗体上)到用户选择输入的数量。
对于一列值:
Me.myCombo.List = Worksheets("mySheet").Range("B2:B100").Value
对于一行值:
Me.myCombo.List = Application.Transpose( _ Worksheets("mySheet").Range("B2:M2").Value)