Posts by eppel1337

    Hi. I'm trying to create a macro, that will add plus one to the previous number in the column. Specificaly column A. The only macro I have been able to find is plus one to the selected cell. Sub P1() For Each cell In Selection cell.Value = cell.Value + 1 Next End Sub I have no idea where to start. I would apriciate if someone could help me.