Bom dia!!
Os arquivos estão no mesmo diretório?
Os arquivos tem a mesma extensão?
Todas as guias desses arquivos devem ser afetadas ou apenas uma?
Sem detalhes e conhecer sua estrutura será impossível te ajuda!!!
Mas ai vai algo que lhe sirva de expiração.
Sub AleVBA_16818()
Dim MyPath As String
Dim MyFile As String
Dim Wkb As Workbook
Dim Cnt As Long
Application.ScreenUpdating = False
MyPath = "C:UsersAleVBADocumentsMinhaPasta"
If Right(MyPath, 1) <> "" Then MyPath = MyPath & ""
MyFile = Dir(MyPath & "*.xls")
Cnt = 0
Do While Len(MyFile) > 0
Cnt = Cnt + 1
Set Wkb = Workbooks.Open(MyPath & MyFile)
Wkb.Worksheets("Plan1").Range("B7").Value = "AleVBA"
Wkb.Close savechanges:=True
MyFile = Dir
Loop
If Cnt > 0 Then
MsgBox "Processo completo...", vbExclamation
Else
MsgBox "Arquivos não encnotrado!", vbExclamation
End If
Application.ScreenUpdating = True
End Sub
Att
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 31/07/2015 8:06 am