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.
Function GetLine(data As String, n As Long)
GetLine = Split(data, vbLf)(n - 1) 'subtract 1, as array from the Split function are
'zero based, and most people count lines from 1
End Function