This is my code
Private Sub Send_Click()
Dim cell As Range, Rng As Range
Dim strURL As String
Set Rng = Selection
For Each cell In Rng
strURL = "http://xxxxxxxx.com/excelAPI.php?customer_id=1&mobilenumber=" _
& cell.Value & "&message=" & cell.Offset(0, 1).Value
Call Sheets("Sheet1").WebBrowser4.Navigate(strURL)
Next cell
Set Rng = Nothing
End Sub
i am Highlighted only 3 mobile number in cell A and i click the button it takes only the last number.