Cells(CellV, CellH).Resize(15, DEC).Select
With Selection
.MergeCells = True
.HorizontalAlignment = xlCenter
.VerticalAlignment = xlCenter
End With
Sheets("Feuil1").Select
Cells(4,26).Select
With Selection
.Copy
End With
Sheets("Feuil2").Select
With Selection
Cells(CellV, CellH).Resize(15, DEC).Select
ActiveSheet.Paste
Application.CutCopyMode = False
End With