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.
On Error Resume Next
Workbook("OtherOne.xls").Worksheets.Count
If Eff.Number <> 0 Then
' open the sucker!
End If
Sub IsThisWorkbookOpen(LookingForThisWorkbook As String)
Dim OfTheWorkbooks As Workbook
Dim Hits As Integer
For Each OfTheWorkbooks In Application.Workbooks
If InStr(1, "LookingForThisWorkbook", OfTheWorkbooks.Name, vbTextCompare) = 1 Then
MsgBox "The " & LookingForThisWorkbook & " workbook was found", , "Found It!"
Hits = Hits + 1
End If
Next
If Hits = 0 Then
MsgBox LookingForThisWorkbook & " was not found", , "Where is It?"
End If
End Sub