Checksum Function

Returns a checksum value for a string.

Syntax

Checksum (string)

string is the string you want to add the checksum to. If string is a null value, null is returned.

Example

This example uses the Checksum function to return a number that is a cyclic redundancy code for the specified string:

MyString = "This is any arbitrary string value"
CheckValue = Checksum(MyString)  ;* returns 36235