I would like the output from the -expand- command but with the rows in a different order. As a simplified example, if I run this code --
Code:
clear

input x
1
2
end

expand 3

list, clean noobs
-- I get this output:
x
1
2
1
1
2
2
But the output I want is this, the same lines but in a different order, like three appended copies of the original data:
x
1
2
1
2
1
2
What's the simplest way to do that? The -append- command works fine if I just want 3 copies, but doesn't scale well if I want 100.

Many thanks,
Paul