Don't know why Excel questions are coming up in an Access forum........
Start by clicking on the cell where you want the word "TEXT". Then, in the menu, click on DATA, Name Manager.
Add a new named range; it should be named "Gate_22".

Quick navigate

Modify the code for the sub AddColumn:
Code:
Sub AddColumn()
Dim X As Integer
'add column
Columns("A:A").Select
Selection.Insert Shift:=xlToRight
'number the rows
For X = 2 To 130
Range("A" & X).Value = X - 1
Next X
'delete rows ???
Rows("131:140").Select
Selection.Delete Shift:=xlUp
'put the word text in the Gate 22 column, row 2
Range("Gate_22").Value = "text"
'move to top left
Range("A2").Select
ActiveCell.Offset(-1, 0).Select
End Sub
Attached is the workbook if you need an example.....