I have a cell of text which has multiple timestamps in it surrounded by square brackets.
[ANon-02/05/2013 08:32:30 - 0:15 mins]
Update here
[JBloggs-07/05/2013 09:30:13 - 0:15 mins]
Update here
[JBloggs-09/05/2013 16:02:19 - 0:15 mins]
Update here
[ANon-10/05/2013 10:42:41 - 1:0 mins]
I would like to be able to extract just the last timestamp, i.e.
[ANon-10/05/2013 10:42:41 - 1:0 mins]
I can extract the first set of timestamps using the following, but I cannot work out how to edit the formula to give me the last timestamp.
=MID(I3,SEARCH("[",I3)+1,SEARCH("]",I3)-SEARCH("[",I3)+1)
I would by grateful if someone could assist.