how to keep the first cell always active in excel using vba
问题 How to keep the first cell always active when opening the excel sheet. Can any one guide me to how to this. This is my code: Private Sub Send_Click() Dim strURL As String strURL = "http://xxxxxxxxxxxx.com/excelAPI.php?customer_id=1&mobilenumber=" _ & ActiveCell.Value & "&message=" & ActiveCell.Offset(0, 1).Value Call Sheets("Sheet1").WebBrowser4.Navigate(strURL) End Sub 回答1: I'm not quite sure why you would want the first cell to be active. If it's just because you are using ActiveCell in