SEQNUMNGET
Syntax
SEQNUMNGET (name)
Description
Returns the current value of the named counter generated by SEQNUMN.
Named counters are used when more than one counter is needed for data in the same flow.
Arguments
name | Named counter from which to get value |
Returns
Returns the current number in the named sequence of numbers generated by the SEQNUMN function.
Remarks
SEQNUMN must be called before any call to SEQNUMNGET for the same named counter.
Do not use SEQNUMN and SEQNUMNGET for the same named counter in the same Block.
Example
SEQNUMNGET("MyCounter")
Returns: If the value of MyCounter is currently 12, it returns 12.