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 InsertInto(s1 As String, s2 As String, p1 As Integer) As String
InsertInto = Left(s2, Len(s2) - p1 - 1) & s1 & Right(s2, p1 + 1)
End Function