I have a text field that holds attendance data for a person in a given year. The Field will always be 52 characters long. One for each week in the year. What I would like to do is search from the right hand side of the string and return the first “/” which is the code for present. In theory this would give me the last time a person was present. I would like to return this as the character position. For example if the 49th character in the string contains “/” , the last known attendance for this person would be week 49. What would be the easiest way of achieving this?