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 ws1 as worksheet, ws2 as worksheet
set ws1 = workbooks("thisname.xls").Sheet1
set ws2 = workbooks("thatname.xls").Sheet1
ws2.textbox1.text = ws1.[A1]
...
set ws2 = nothing
set ws1 = nothing