Hello all

Imagine we have a local called years which when printed out/displayed looks like this:

Code:
1990 1991 1992 1993 1994
I want to somehow create a new local, called (let's say) years_doubled, that looks as follows:
Code:
1990 1990 1991 1991 1992 1992 1993 1993 1994 1994
Any ideas?

The purpose behind this is that I am using putexcel and for each year I want to report an N and a mean score per year. I am going to use the desired local to make column names for my matrix.

Regards,
Bruce

Code for replication:
Code:
local years 1990 1991 1992 1993 1994