If someone can tell me how to save and close multiple open excel from an excel with macro
Sub SaveAll()
Dim Wkb As Workbook
For Each Wkb In Workbooks
If Not Wkb.ReadOnly And Windows(Wkb.Name).Visible Then
Wkb.Save
End If
Next
End Sub
that code does not save the edited data in their respective excel and the files are bugged.