re
1 2 3 4 5 6 7
| Dim Zone As Range
Range(Range("A23").Value).Copy Destination:=Sheets("impression").Range("B7")
Application.CutCopyMode = False
Sheets("Feuille de tri").Select
'Sheets("impression").PrintOut Copies:=2, Collate:=True, _
IgnorePrintAreas:=False
End Sub |
attention il faut etre sur le sheets dans le quel tu copie et non celui de destination
si ce n'est pas le sheets ou se trouve la cellule a copier qui est actif alors..on fait comme ceci:. remplace "origine" par le nom de ton sheets
with sheets("origine"):.Range(.Range("A23").Value).Copy Destination:=Sheets("impression").Range("B7"):end with
Partager