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 intCounter As Integer
Dim strAllProducts As Variant
dim strProduct as String
Dim intLenProduct as Integer
strProduct = Me.txtProduct 'your bound text box
intLenProduct = Len(strProduct)
If Left(strAllProducts, intLenProduct) <> strProduct Then
intCounter = intCounter + 1
strAllProducts = strProduct & strAllProducts
End If
'assuming txtCountChanges is an unbound text box in the footer
Me.txtCountChanges = intCounter