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 SentCase(pstr As String) As String
Dim strSent As String, mySent As String
strSent = pstr
mySent = StrConv(Left(strSent, InStr(strSent, " ") - 1), 3) & StrConv(Mid(strSent, InStr(strSent, " ")), 2)
SentCase = mySent
End Function-