I've a quick and embarrassingly simple question on forvalues.
I know that you can type forvalues x = 10/20 to get 10, 11, ... 20
and you can type forvalues x = 10(2)20 to get 10, 12, 14, ... 20
However, can I combine the two? I would like a list 10 12 14 16 18 20 30 40
41 ... 49 50
and would like to type forvalues x = 10(2)20 30 40/50, but this doesn't
work. I know that I can still do what I want to by having three separate
'forvalues' loops, but does anyone know of a way in which I can combine
everything into one?