Sub FillFormulaInEveryOtherRow()
Dim UnusedColumn As Long
UnusedColumn = Cells.Find(What:="*", SearchOrder:=xlByColumns, SearchDirection:=xlPrevious, LookIn:=xlFormulas).Column + 1
Application.ScreenUpdating = False
Cells(1, UnusedColumn) = "X"
Cells(1, UnusedColumn).Resize(2).AutoFill Cells(1, UnusedColumn).Resize(Cells(Rows.Count, "A").End(xlUp).Row)
Columns(UnusedColumn).SpecialCells(xlConstants).Offset(, 1 - UnusedColumn).FormulaR1C1 = "=IF(R[1]C="""","""",""Question"")"
Columns(UnusedColumn).Delete
Application.ScreenUpdating = True
End Sub