Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
trasferimento di celle excel in altro file (usando VBA)?
Usando VBA, vorrei trasferire alcune righe selezionate in un foglio (sempre excel) ma di un altro file. E possibile ? Grazie
1 Answer
- Carnia54Lv 68 years agoFavorite Answer
Io ho provato così
Apri i due file
La prima per aprirli tutti e due
Sub Macro1()
Windows.Arrange ArrangeStyle:=xlHorizontal
End Sub
la 2° per copiare
Sub Macro2()
Range("H4").Select
Selection.Copy
Windows("Cartel2.xlsx").Activate
Range("E5").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub
forse devi cambiare l'estensione xlsm
usa il registratore di macro è molto utile