I need to place short numbered lines across the page to be used by the reader to check off items as they process them. The quantity for the line item will be known. I have used the "replicateString" function to create the correct number of lines like this: numberVar X := 0; x := {QUANTITY}; ReplicateString ('_________ ', x) this produces the following output with 3 as a value for x: ______ _______ _______ I would like it to look like this: 1______ 2______ 3______ Any idea how I can get this to dynamically produce the numbers? Thanks Jeff