https://msdn.microsoft.com/zh-tw/library/office/ff835840.aspx
http://forum.twbts.com/thread-3516-1-1.html
1. 選擇 開發人員
2. 插入 下拉清單
3. 點選 下拉清單
4. 輸入 下拉清單名稱,按 Enter 確定
5. 按 Alt + F11 開啟 VBA 編輯畫面
6. 輸入 VBA 程式
Sub tt()
Sheet1.Shapes("mon_1").ControlFormat.RemoveAllItems '清除所有下拉選項
Sheet1.Shapes("mon_1").ControlFormat.AddItem ("111") '新增一筆下拉選項
Sheet1.Shapes("mon_1").ControlFormat.AddItem ("aaa") '新增一筆下拉選項
Sheet1.Shapes("mon_1").ControlFormat.AddItem ("xxx") '新增一筆下拉選項
Sheet1.Shapes("mon_1").ControlFormat.Value = 2 '將下拉選單設定預設值為第二筆
MsgBox (Sheet1.Shapes("mon_1").ControlFormat.List(2)) '顯示第二筆選單的值
End Sub
沒有留言:
張貼留言