This gives you the year
=MID(report!C11,FIND(", ",report!C11)+2,4)
This gives you the month
=LEFT(report!C11,3)
This gives you the day
=IF(ISERROR(FIND(",",(MID(report!C11,FIND(" ",report!C11)+1,2)),1)),MID(report!C11,FIND(" ",report!C11)+1,2),LEFT(MID(report!C11,FIND(" ",report!C11)+1,2)))