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.
nvalue = Workbooks("S350 T3 PLPDP.xls").Worksheets("Master Tracking").Cells(10, 2).offset(1,0).value
sub test
r$ = 10
do until r$ = 200
activecell.offset(r$,0).value "= '[S350 T3 PLPDP.xls]Master Tracking'!R" & r$ & "C2"
r$ = r$+1
Loop
End sub