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.
Sub test()
Dim wb
Dim b_value
Dim row_num As Integer
row_num = 58
wb1 = "book2.xls"
b_value = "b" & row_num
Application.Workbooks.Open (wb1)
ActiveSheet.UsedRange.Copy _
Destination:=Workbooks("book2.xls").Range("a1")
End Sub