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)