Sub CreatSem()
'
'
Dim c As String
'
Test = Range("D10")
c = Mid(ThisWorkbook.Path, 1, InStrRev(ThisWorkbook.Path, "\"))
'
'
If Dir(c & Year(Date), 16) = "" Then MkDir (c & Year(Date))
'
Application.ScreenUpdating = False
'
For Each Cell In Range("A1:K75").SpecialCells(xlCellTypeFormulas)
If Test < 11 Then Cell.Replace What:="01", Replacement:="0" & Test - 1 Else Cell.Replace What:="01", Replacement:=Test - 1
Cell.Replace What:="2015", Replacement:=Year(Date)
Next Cell
'
Application.ScreenUpdating = True
'
End Sub