Forum Discussion
Inawab770
Jul 28, 2022Copper Contributor
Adjust cell in multiple workbooks with VBA
Hi everyone I am trying to change cells range in one hundred workbooks using an excel list as a reference to the file location and the data I want to adjust in each workbook. File Name: File loc...
HansVogelaar
Jul 28, 2022MVP
Use
With wkb
With Sheets("JAN")
.Unprotect
.Range("F3:F5").Value = dt
.Protect
End With
.Close SaveChanges:=True
End With