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.
Dim i As Integer
With ActiveCell
Do
i = InStr(i + 1, .Value, vbLf)
If i > 0 Then
With .Characters(i, 1)
.Font.Size = 6
End With
End If
Loop Until i = 0
End With