How do you create a number sequence that will display each number twice?
Like so:
#0001
#0001
#0002
#0002
#0003
#0003
#0004
#0004
#0005
#0005
I need to create a table where the same number is displayed multiple times in each row.
#0001 #0001
#0002 #0002
#0003 #0003
#0004 #0004
#0005 #0005
I thinking there might be something like {SEQ MyList \# "0000" \*DUPLICATE_VALUES}
I tried searching it but don't even know what the proper terminology would be.
That's as simple as:
{SEQ MyList \# 0000}
and, for the duplicate:
{SEQ MyList \c \# 0000}