Thanks for your input I have managed to do a workaround
it my not be pretty as I am still learning I managed to get it to work like this.
This is not my code it was provided by a good member on here and this site has been of immense help and i look forward to learning more.
Sub Autotick()
Dim OneCell As Range
For Each OneCell In Range(Range("A53:A69"), Range("A" & Rows.Count).End(xlUp))
If Not IsEmpty(OneCell) Then
OneCell.Offset(0, 1).Font.Name = "Wingdings"
OneCell.Offset(0, 1).Value = "ü"
End If
Next OneCell
End Sub
Kindest Regards Alex
Bookmarks