@
koskesh
Suppose 36.2014 is in cell A1 then try the below formula in Cell B2
MONTH(DATE(RIGHT(A1,LEN(A1)-SEARCH(".",A1)),1,(LEFT(A1,SEARCH(".",A1)-1))*7-2)-WEEKDAY(DATE((LEFT(A1,SEARCH(".",A1)-1)),1,3)))
If you wish to see the month name then use
CHOOSE(MONTH(DATE(RIGHT(A1,LEN(A1)-SEARCH(".",A1)),1,(LEFT(A1,SEARCH(".",A1)-1))*7-2)-WEEKDAY(DATE((LEFT(A1,SEARCH(".",A1)-1)),1,3))),"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
Regards
Asheesh