Sub PoneQuitaMeses() If ActiveCell.Value = "enero" Then ActiveCell.Value = "" ActiveCell.Select Selection.AutoFill Destination:=ActiveCell.Range("A1:A12"), Type:= _ xlFillDefault Else ActiveCell.FormulaR1C1 = "enero" Selection.AutoFill Destination:=ActiveCell.Range("A1:A12"), Type:= _ xlFillDefault End If End Sub