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.
Dim r As Range
Set r = Range(Cells(4, "E"), Cells(4, "E").End(xlDown))
'.......
sendto = r.Value
Dim r As Range
For each r in Range(Cells(4, "E"), Cells(4, "E").End(xlDown))
'...
sendto = r.value
'...
Next