Bonjour,
Voici un essai avec un fichier fermé au départ :
Sub test()
fichier = "\\Mg21w133\groupes\DTC\10. Rapport Quotidien Transport\FT001\117\TABLEAU DE BORD.xlsx"
with workbooks.open(fichier)
t = .sheets("TEST").usedrange.value
.close true
end with
thisworkbook.sheets("nomfeuilledestination").cells(1, 1).resize(ubound(t), ubound(t,2)).value = t
end sub
Il faut adapter le nom de la feuille de destination.
Cdlt,