makenumberedarray(
SEP
,
START
,
END
)

The makenumberedarray( function generates a numeric sequenced text array.


Parameters

This function has three parameters:

sep – the separator character that will be placed between each number.

start – the starting number of the sequence (must be an integer).

end – the ending number of the sequence (must be an integer that is larger than the start value).


Description

This function generates a numeric sequenced array.

makenumberedarray(",",1,3) ☞ 1,2,3
makenumberedarray(",",8,15) ☞ 8,9,10,11,12,13,14,15

See Also


History

VersionStatusNotes
10.0UpdatedCarried over from Panorama 6.0, but much faster than before.