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.
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If (Range("A1").Value = "21/06/2005") Then
Set objwordapp = CreateObject("Word.Application")
objwordapp.documents.Open Filename:="H:\SW1.doc"
objwordapp.Visible = True
Set objwordapp = Nothing
End If
End Sub
If (Range("A1").Value = "firstDate") [red] Or (Range("A1").Value = "secondDate")[/red] Then