A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Private Sub CmdRefresh_click()
Dim ws As Worksheet
Dim Items, Item
Items = Array("Inbound", "Data Records")
For Each Item In Items
Set ws = Worksheets(Item)
ws.Unprotect Password:="mozzer"
Next
Call Reset
ActiveWorkbook.RefreshAll
For Each Item In Items
Set ws = Worksheets(Item)
ws.Protect Password:="mozzer", AllowUsingPivotTables:=True
Next
End Sub