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 MyCell As [b]String[/b]
MyCell = InputBox("Enter Beginning Cell i.e. A1")
Range(MyCell).Select 'no QUOTES
Dim MyCell as Range, inp as String
inp=InputBox("Enter Beginning Cell i.e. A1")
[b]Set MyCell=Range(inp)[/b]