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.
Option Compare Database
Dim Product As Double
Private Sub Report_Open(Cancel As Integer)
Product = 1
End Sub
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Product = Me.Result * Product
Me.Text1 = Product
End Sub
Private Sub GroupFooter0_Format(Cancel As Integer, FormatCount As Integer)
Product = 1
End Sub