Pular para o conteúdo principal

CalculatingUncertaintyAsLeft

Use this function to determine if the calculated uncertainty is for 'Uncertainty As Found' or 'Uncertainty As Left.' Essentially, it is a flag that gets set when the As Left values are being populated. The function technically returns either a '1' or a '0' - '1' if As Left Values. VBScript automatically interprets this boolean to True (1) or False (0). Thus, TRUE means you are entering the As Left values, and FALSE means you are entering the As Found values.

Example:

VBscript

If NOT CalculatingUncertaintyAsLeft then
do the as found calculations here
else
do the as left calculations here
end if

or

If CalculatingUncertaintyAsLeft then
Do As Left Stuff
end if
## ```