だから私がやろうとしているのは、一番下の # が何であれ、リスト 1 を並べることです。そうするうちに、私はある意味ですべての情報を右に移動しています。次に、選択範囲の一番下に移動して、リストの一番下の列 B を見つけます。次に、1 を左に移動して、一番下の A 列を検索し、リストの一番下まで # システムを入力します.
Private Sub CommandButton2_Click()
'My problem is i don't know what to set "Dim y As Range" I know Range is
'incorrect along with Long, and Integer.
Dim y As Range
Sheets("PalmFamily").Select
Columns("A:A").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"
Range("A2").Select
ActiveCell.FormulaR1C1 = "2"
Range("A3").Select
ActiveCell.FormulaR1C1 = "3"
Range("A1:A3").Select
'As you can notice I also have a weird code
'" y = Range("B1").End(xlDown).Offset(0, -1)" I'm trying to go to the bottom
'of my list then move left 1.
y = Range("B1").End(xlDown).Offset(0, -1)
'As well the I'm not sure if I set my range to be correct when I do
'"Range("A1,y")"
Selection.AutoFill Destination:=Range("A1,y"), Type:=xlFillDefault
Range("A1,y").Select
End Sub