Sub Change()
Dim i As Long
Worksheets("Timesheet ").Activate
For i = 12 To 25
If Range("C1:C25").Cells(i).Value = "P" Then
Range("C" & i).Font.Name = "Wingdings 2"
Else
Range("C" & i).Font.Name = "Arial"
End If
Next i
End Sub
Appreciate effort by clicking Like button