???
Option Explicit
Sub aaa()
Dim strtRow As Long
Dim TenNum
strtRow = 2
TenNum = Abs(Val(InputBox("How many tenants")))
If Not IsNumeric(TenNum) Then Exit Sub
With Range("N" & strtRow)
.Formula = "=TEXT(2022,""@"")"
.AutoFill Destination:=Range("N" & strtRow & ":N" & strtRow + TenNum), Type:=xlFillDefault
End With
End Sub
Sub bbb()
Dim strtRow As Long
Dim TenNum
strtRow = 2
TenNum = Abs(Val(InputBox("How many tenants")))
If Not IsNumeric(TenNum) Then Exit Sub
Range("N" & strtRow & ":N" & strtRow + TenNum).Formula = "=TEXT(2022,""@"")"
End Sub
Sub ccc()
Dim strtRow As Long
Dim TenNum
strtRow = 2
TenNum = Abs(Val(InputBox("How many tenants")))
If Not IsNumeric(TenNum) Then Exit Sub
Range("N" & strtRow).Formula = "=TEXT(2022,""@"")"
Range("N" & strtRow & ":N" & strtRow + TenNum).FillDown
End Sub
???
Bookmarks