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 rFound As Range
Set rFound = Cells.Find("Account No.")
If Not rFound Is Nothing Then
rFound.EntireColumn.ColumnWidth = 16
End If
Dim rFound As Range
Set rFound = [b]Rows(1)[/b].Find("Account No.")
If Not rFound Is Nothing Then
rFound.EntireColumn.ColumnWidth = 16
End If