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 sVal As String
Dim dVal As Double
Dim iVal As Integer
'echo original value
MsgBox [ProductID]
'store value (formatted as text)
sVal = [ProductID]
'store value (formatted as number)
dVal = CDbl([ProductID])
'store value (formatted as a whole number)
iVal = CInt([ProductID])