Hello guys, i have tried fixing it my self with no luck, i would really appreciate if someone may help me fix this. Again thanks for your time and help.

Present code
Sub RectangleBeveled6_Click()
Select Case UCase(Cells(ActiveCell.Row
, "H"))
Case ""
Cells(ActiveCell.Row, "H") = "1"
Case "1"
Cells(ActiveCell.Row, "H") = "2"
Case "2"
Cells(ActiveCell.Row, "H") = "L"
Case "L"
Cells(ActiveCell.Row, "H") = "Z"
Case "Z"
Cells(ActiveCell.Row, "H") = ""
End Select
End Sub
****Description. *****
On column "H" there is four option that will be shown here. if i click on the small button on the file.
I would like to replace these option as follow.
1 with First P
2 with Second P
3 with Last P
Z with Z Done
Select Case UCase(Cells(ActiveCell.Row
Case ""
Cells(ActiveCell.Row, "H") = "First P"
Case "1"
Cells(ActiveCell.Row, "H") = "Second P"
Case "2"
Cells(ActiveCell.Row, "H") = "Last P"
Case "L"
Cells(ActiveCell.Row, "H") = "Z Done"
Case "Z"
Cells(ActiveCell.Row, "H") = ""
End Select
End Sub