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.
= Left([MyMemoField], 5) & Chr(13) & Chr(10) & Mid([MyMemoField], 6)
= IIf(Len([MyMemoField]) > 5, Left([MyMemoField], 5) & Chr(13) & Chr(10) & Mid([MyMemoField], 6), [MyMemoField])
Public Function FormatMyString(strMyString As String) As String
If Len(strMyString) > 5 Then
FormatMyString = Trim(Left(strMyString, 5)) & vbCrLf & Trim(Mid(strMyString, 6))
Else
FormatMyString = strMyString
End If
End Function
= FormatMyString([MyMemoField])