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 cbMulti_Change()
Dim sSheet As Worksheet, rSource As String
Set sSheet = Sheets("Sites")
cbSite.Clear
For i = 2 To sSheet.Range("A65536").End(xlUp).Row
If sSheet.Range("A" & i).Text = ufSites.cbMulti.Text Then
Me.cbSite.AddItem (sSheet.Range("B" & i).Text)
End If
Next i
End Sub