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 ComboBox1_Click()
msgBox ComboBox1.Value
End Sub
Private Sub ComboBox1_Click()
With ActiveSheet
.[A1].Value = .ComboBox1.Value
.Cells(1, 1).Value = .ComboBox1.Value
.Cells(1, "A").Value = .ComboBox1.Value
End With
End Sub