The code is written to change the category in column R of the active row. There are three options and three macros written as below. They are CURRENT, PAID and REVIEW. It it possible to run the same under one macro and have it cycle thru each time the macro button is clicked? If it was CURRENT then it would change to PAID and if done again to REVIEW, and again to REVIEW etc?
Code:
Private Sub CommandButton20_Click()
' CHANGE TO PAID
Select Case ActiveCell.Row
Case 1 To 5
MsgBox "PAID macro will not work on row " & ActiveCell.Row & ". Please try again!",
Exit Sub
End Select
Range("R" & ActiveCell.Row).Value = "PAID"
Range("S" & ActiveCell.Row).Select
End Sub