Hello Xperts,

Just wondering if there is any way in STATA to capture all the values (ignoring missing values) of a variable into a data structure?

For example,
Code:
input int(id size)
1 200
2 .
3 400
4 500
5 .
6 200
I would like to get all the values of the variable "size" into a data structure.
For example, a data structure called test "200 400 500 200"

Is this possible? How?

Thanks,

/J