| 
    
     |  | こんにちは はじめたばかりで、ネットで検索しながら、
 作りました。
 
 とりあえず、動きますが、
 手直しするところがあったら、教えて下さい。
 宜しくお願い致します。
 
 Private Sub ListBox3_Click()
 
 If Me.ListBox3.Value = "1月" Then Cells(1, 15).Select
 If Me.ListBox3.Value = "2月" Then Cells(5, 15).Select
 If Me.ListBox3.Value = "3月" Then Cells(10, 15).Select
 If Me.ListBox3.Value = "4月" Then Cells(15, 15).Select
 If Me.ListBox3.Value = "5月" Then Cells(20, 15).Select
 If Me.ListBox3.Value = "6月" Then Cells(25, 15).Select
 If Me.ListBox3.Value = "7月" Then Cells(30, 15).Select
 If Me.ListBox3.Value = "8月" Then Cells(35, 15).Select
 If Me.ListBox3.Value = "9月" Then Cells(40, 15).Select
 If Me.ListBox3.Value = "10月" Then Cells(45, 15).Select
 If Me.ListBox3.Value = "11月" Then Cells(50, 15).Select
 If Me.ListBox3.Value = "12月" Then Cells(55, 15).Select
 
 End Sub
 
 |  |