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.
-- Note: Public and Shared are ESSENTIAL keywords
-- without them, the code won't work throughout the whole
-- report!!!
Public Shared <VariableName> as <datatype>
-- For a counter, use INT
Public Shared Function <FunctionName>() as String
<VariableName> += 1
-- += is equivlant to the T-SQL "Set Num = Num + 1"
Return <VariableName>.ToString
-- This is a select stmt that calls the function
-- as a string returned variable
Return ""
-- This can be used as an alternative to the above
-- to return/display nothing.
END Function