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.
Right(Space(10) & Format([SF],"#,##0"),10)
Private Sub DisplayedField_DblClick(Cancel As Integer)
If Me.OrderBy = "SortByField Desc" Then
Me.OrderBy = "SortByField Asc"
Else
Me.OrderBy = "SortByField Desc"
End If
Me.OrderByOn = True
End Sub