Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub UpDateModule()
Dim i As Long
Workbooks("WBToUpdate.xls").Activate
With ActiveWorkbook.VBProject.VBComponents _
(ThisWorkbook.CodeName).CodeModule
If .CountOfLines > 0 Then
For i = .CountOfLines To 1 Step -1
.DeleteLines i
Next
End If
.AddFromFile ("UpDate.txt")
End With
End Sub