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.
objXlsWorksheet.Range(Cells(2, 2), Cells(50, 14))
Option Explicit
Sub test()
MsgBox BuildCellAddress(2, 2) & ":" & BuildCellAddress(50, 14)
End Sub
Function BuildCellAddress(ARow As Long, AColumn As Integer) As String
BuildCellAddress = Chr(64 + AColumn) & ARow
End Function
objXlsWorksheet.Cells(2,1) for Cell A2.
objXlsWorksheet.Range(Cells(2,2),Cells(50,14)) for Cells B2:N50?