"Rodrigo Brice�o" <[email protected]> wrote:
> Hello Stata listers. I was looking in the Faq and did not find any topic
> related with my question. I think is very simple. I need to combine the
> values provided in two variables to make a new variable. For example:
> age1=4
> age2=99
>
> New variable=499 where the first number represents a code and the second the
> age recorded depending of the first code.
If your age1 and age2 variables are stored as numeric, you can type
. gen newvar = real(string(age1) + string(age2))
This should give you the result you want.
--Shannon Driver
[email protected]
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/